using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Message.Entitys; /// /// 消息实例 /// 版 本:V3.2 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2021-06-01. /// [SugarTable("BASE_MESSAGE")] public class MessageEntity : CLDEntityBase { /// /// 类别:1-通知公告,2-系统消息、3-私信消息. /// [SugarColumn(ColumnName = "F_TYPE")] public int? Type { get; set; } /// /// 标题. /// [SugarColumn(ColumnName = "F_TITLE")] public string Title { get; set; } = string.Empty; /// /// 正文. /// [SugarColumn(ColumnName = "F_BODYTEXT")] public string BodyText { get; set; } /// /// 优先. /// [SugarColumn(ColumnName = "F_PRIORITYLEVEL")] public int? PriorityLevel { get; set; } /// /// 收件用户. /// [SugarColumn(ColumnName = "F_TOUSERIDS")] public string ToUserIds { get; set; } /// /// 是否阅读. /// [SugarColumn(ColumnName = "F_ISREAD")] public int? IsRead { get; set; } /// /// 描述. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string Description { get; set; } /// /// 排序码. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } /// /// 附件. /// [SugarColumn(ColumnName = "F_FILES")] public string Files { get; set; } [SugarColumn(ColumnName = "F_FLOWTYPE")] public int? FlowType { get; set; } }