using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using System.ComponentModel.DataAnnotations; namespace IStation.Model { /// /// 用户登录日志 /// public partial class UserLoginLog : System.ICloneable { /// /// /// public UserLoginLog() { } /// /// /// public UserLoginLog(UserLoginLog rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.SoftType = rhs.SoftType; this.SoftTag = rhs.SoftTag; this.UserID = rhs.UserID; this.InputLoginName = rhs.InputLoginName; this.LoginTime = rhs.LoginTime; this.LoginIP = rhs.LoginIP; this.Message = rhs.Message; } /// /// /// public void Reset(UserLoginLog rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.SoftType = rhs.SoftType; this.SoftTag = rhs.SoftTag; this.UserID = rhs.UserID; this.InputLoginName = rhs.InputLoginName; this.LoginTime = rhs.LoginTime; this.LoginIP = rhs.LoginIP; this.Message = rhs.Message; } /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 软件类型 /// public string SoftType { get; set; } /// /// 软件标签 /// public string SoftTag { get; set; } /// /// 用户标识 /// public long UserID { get; set; } /// /// 输入登录名称 /// public string InputLoginName { get; set; } /// /// 登录时间 /// public DateTime LoginTime { get; set; } /// /// 登录IP /// public string LoginIP { get; set; } /// /// 信息 /// public string Message { get; set; } /// /// /// public UserLoginLog Clone() { return (UserLoginLog)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }