using System;
|
using System.Text;
|
using System.Collections.Generic;
|
using System.Data;
|
using System.Runtime.Serialization;
|
using SqlSugar;
|
|
namespace IStation.Entity
|
{
|
/// <summary>
|
/// 登录日志
|
/// </summary>
|
[SugarTable("user_login_log")]
|
public class UserLoginLog :CorpEntity, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public UserLoginLog() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public UserLoginLog(UserLoginLog rhs):base(rhs)
|
{
|
this.UserID = rhs.UserID;
|
this.InputLoginName = rhs.InputLoginName;
|
this.LoginTime = rhs.LoginTime;
|
this.LoginIP = rhs.LoginIP;
|
this.SoftType = rhs.SoftType;
|
this.SoftTag = rhs.SoftTag;
|
this.Message = rhs.Message;
|
}
|
|
/// <summary>
|
/// 用户标识
|
/// </summary>
|
public long UserID
|
{
|
get { return _userid; }
|
set { _userid = value; }
|
}
|
private long _userid;
|
|
/// <summary>
|
/// 输入登录名称
|
/// </summary>
|
public string InputLoginName
|
{
|
get { return _inputloginname; }
|
set { _inputloginname = value; }
|
}
|
private string _inputloginname;
|
|
/// <summary>
|
/// 登录时间
|
/// </summary>
|
public DateTime LoginTime
|
{
|
get { return _logintime; }
|
set { _logintime = value; }
|
}
|
private DateTime _logintime;
|
|
/// <summary>
|
/// 登录IP
|
/// </summary>
|
public string LoginIP
|
{
|
get { return _loginip; }
|
set { _loginip = value; }
|
}
|
private string _loginip;
|
|
/// <summary>
|
/// 软件类型
|
/// </summary>
|
public string SoftType
|
{
|
get { return _softtype; }
|
set { _softtype = value; }
|
}
|
private string _softtype;
|
|
/// <summary>
|
/// 软件标签
|
/// </summary>
|
public string SoftTag
|
{
|
get { return _softtag; }
|
set { _softtag = value; }
|
}
|
private string _softtag;
|
|
/// <summary>
|
/// 信息
|
/// </summary>
|
public string Message
|
{
|
get { return _message; }
|
set { _message = value; }
|
}
|
private string _message;
|
|
/// <summary>
|
///
|
/// </summary>
|
public UserLoginLog Clone()
|
{
|
return (UserLoginLog)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
|
}
|