namespace BPA.MES.Base.Application.Entitys { /// /// 名 称 :用户日志 /// 创 建 人 :yangxiao /// 创建时间 : 2023/8/21 10:18:50 /// 描 述 : /// [SugarTable("user_log")] public class UserLogEntity : DEntityBase { /// /// 权限 /// [SugarColumn(IsNullable = true)] public string Permission { get; set; } /// /// 用户名 /// [SugarColumn(IsNullable = true)] public string UserName { get; set; } /// /// 日志消息 /// [SugarColumn(IsNullable = true)] public string MsgInfo { get; set; } /// /// 日志时间 /// [SugarColumn(IsNullable = true)] public DateTime CreateDate { get; set; } } }