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