using System; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Recruitment.Admin.Commons.Core.DataManager; using Znyc.Recruitment.Admin.Commons.Entitys; namespace Znyc.Recruitment.Admin.Security.Entitys { /// /// 系统日志,数据实体对象 /// [AppDBContext("DefaultDb")] [Table("sys_log")] [Serializable] public class LogEntity : BaseEntity { /// /// 默认构造函数(需要初始化属性的在此处理) /// public LogEntity() { IsDeleted = true; CreatedTime = DateTime.Now; } /// /// 日期 /// public DateTime? Date { get; set; } /// /// 用户名 /// public string Account { get; set; } /// /// 姓名 /// public string UserName { get; set; } /// /// 组织主键 /// public long OrganizeId { get; set; } /// /// 类型 /// public string Type { get; set; } /// /// IP地址 /// public string IPAddress { get; set; } /// /// IP所在城市 /// public string IPAddressName { get; set; } /// /// 系统模块Id /// public long ModuleId { get; set; } /// /// 系统模块 /// public string ModuleName { get; set; } /// /// 结果 /// public bool? Result { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 有效标志 /// public bool IsEnabled { get; set; } } }