using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 用户日志报表项 /// public class UserLoginLogItem { /// /// /// public UserLoginLogItem() { } /// /// /// public UserLoginLogItem(Model.UserLoginLog rhs) { 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 UserLoginLogItem(Model.UserLoginLog rhs, string corpName, string area) : this(rhs) { this.CorpName = corpName; this.Area = area; } /// /// 用户标识 /// public long UserID { get; set; } /// /// 输入登录名称 /// public string InputLoginName { get; set; } /// /// 登录时间 /// public DateTime LoginTime { get; set; } /// /// 登录IP /// public string LoginIP { get; set; } /// /// 公司名称 /// public string CorpName { get; set; } /// /// 地区 /// public string Area { get; set; } /// /// 软件类型 /// public string SoftType { get; set; } /// /// 软件标签 /// public string SoftTag { get; set; } /// /// 信息 /// public string Message { get; set; } } }