using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Systems.Entitys.System; /// /// 消息模板 /// 版 本:V3.2 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2021-06-01. /// [SugarTable("BASE_MESSAGE_TEMPLATE")] public class MessageTemplateEntity : CLDEntityBase { /// /// 分类(数据字典). /// [SugarColumn(ColumnName = "F_CATEGORY")] public string Category { get; set; } /// /// 模板名称. /// [SugarColumn(ColumnName = "F_FULLNAME")] public string FullName { get; set; } /// /// 模板编码. /// [SugarColumn(ColumnName = "F_ENCODE")] public string EnCode { get; set; } /// /// 标题. /// [SugarColumn(ColumnName = "F_TITLE")] public string Title { get; set; } = string.Empty; /// /// 是否站内信. /// [SugarColumn(ColumnName = "F_ISSTATIONLETTER")] public int? IsStationLetter { get; set; } /// /// 是否邮箱. /// [SugarColumn(ColumnName = "F_ISEMAIL")] public int? IsEmail { get; set; } /// /// 是否企业微信. /// [SugarColumn(ColumnName = "F_ISWECOM")] public int? IsWeCom { get; set; } /// /// 是否钉钉. /// [SugarColumn(ColumnName = "F_ISDINGTALK")] public int? IsDingTalk { get; set; } /// /// 是否短信. /// [SugarColumn(ColumnName = "F_ISSMS")] public int? IsSms { get; set; } /// /// 短信模板ID. /// [SugarColumn(ColumnName = "F_SMSID")] public string SmsId { get; set; } /// /// 模板参数JSON. /// [SugarColumn(ColumnName = "F_TEMPLATEJSON")] public string TemplateJson { get; set; } /// /// 内容. /// [SugarColumn(ColumnName = "F_CONTENT")] public string Content { get; set; } = string.Empty; }