using System; namespace LeaRun.Application.Entity.SystemManage { /// /// 版 本 6.1 /// Copyright (c) 2013-2016 上海力软信息技术有限公司 /// 创建人:佘赐雄 /// 日 期:2016.1.8 9:56 /// 描 述:系统日志 /// public class LogEntity : BaseEntity { #region 实体成员 /// /// 日志主键 /// public string LogId { get; set; } /// /// 分类Id 1-登陆2-访问3-操作4-异常 /// public int? CategoryId { get; set; } /// /// 来源对象主键 /// public string SourceObjectId { get; set; } /// /// 来源日志内容 /// public string SourceContentJson { get; set; } /// /// 操作时间 /// public DateTime? OperateTime { get; set; } /// /// 操作用户Id /// public string OperateUserId { get; set; } /// /// 操作用户 /// public string OperateAccount { get; set; } /// /// 操作类型Id /// public string OperateTypeId { get; set; } /// /// 操作类型 /// public string OperateType { get; set; } /// /// 系统功能主键 /// public string ModuleId { get; set; } /// /// 系统功能 /// public string Module { get; set; } /// /// IP地址 /// public string IPAddress { get; set; } /// /// IP地址所在城市 /// public string IPAddressName { get; set; } /// /// 主机 /// public string Host { get; set; } /// /// 浏览器 /// public string Browser { get; set; } /// /// 执行结果状态 /// public int? ExecuteResult { get; set; } /// /// 执行结果信息 /// public string ExecuteResultJson { get; set; } /// /// 备注 /// public string Description { get; set; } /// /// 删除标记 /// public int? DeleteMark { get; set; } /// /// 有效标志 /// public int? EnabledMark { get; set; } #endregion } }