using NewPdaSqlServer.Dto.@base; using SqlSugar; namespace NewPdaSqlServer.entity; /// /// [SugarTable("MESSAGE_CENTER")] public class MessageCenter : Page { /// /// 默认值: (newid()) /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid Guid { get; set; } /// /// [SugarColumn(ColumnName = "table_name")] public string? TableName { get; set; } /// /// [SugarColumn(ColumnName = "url")] public string? Url { get; set; } /// /// [SugarColumn(ColumnName = "method")] public string? Method { get; set; } /// /// [SugarColumn(ColumnName = "result")] public int? Result { get; set; } /// /// [SugarColumn(ColumnName = "result_data")] public string? ResultData { get; set; } /// /// [SugarColumn(ColumnName = "status")] public int? Status { get; set; } /// /// [SugarColumn(ColumnName = "create_by")] public string? CreateBy { get; set; } /// /// [SugarColumn(ColumnName = "create_date")] public string? CreateDate { get; set; } /// /// [SugarColumn(ColumnName = "title")] public string? Title { get; set; } /// /// [SugarColumn(ColumnName = "page_name")] public string? PageName { get; set; } /// /// 默认值: ((0)) /// [SugarColumn(ColumnName = "deal_with")] public int? DealWith { get; set; } /// /// [SugarColumn(ColumnName = "pid")] public Guid? Pid { get; set; } /// /// 默认值: ((1)) /// [SugarColumn(ColumnName = "seq")] public int? Seq { get; set; } /// /// [SugarColumn(ColumnName = "route")] public string? Route { get; set; } /// /// [SugarColumn(ColumnName = "data")] public string? Data { get; set; } /// /// [SugarColumn(ColumnName = "content_type")] public string? ContentType { get; set; } /// /// [SugarColumn(ColumnName = "is_message")] public int? IsMessage { get; set; } /// /// [SugarColumn(ColumnName = "update_date")] public string? UpdateDate { get; set; } /// /// [SugarColumn(ColumnName = "update_by")] public string? UpdateBy { get; set; } /// /// [SugarColumn(ColumnName = "prc_mame")] public string? PrcMame { get; set; } [SugarColumn(IsIgnore = true)] public int? isShow { get; set; } [SugarColumn(IsIgnore = true)] public decimal? Count { get; set; } }