using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Message.Entitys.Entity;
///
/// 消息模板配置
/// 版 本:V3.2
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
/// 日 期:2021-06-01.
///
[SugarTable("BASE_MESSAGE_TEMPLATE_CONFIG")]
public class MessageTemplateEntity : CLDEntityBase
{
///
/// 名称.
///
[SugarColumn(ColumnName = "F_FULLNAME")]
public string? FullName { get; set; }
///
/// 编码.
///
[SugarColumn(ColumnName = "F_ENCODE")]
public string? EnCode { get; set; }
///
/// 模板类型.
///
[SugarColumn(ColumnName = "F_TEMPLATETYPE")]
public string? TemplateType { get; set; }
///
/// 消息来源.
///
[SugarColumn(ColumnName = "F_MESSAGESOURCE")]
public string? MessageSource { get; set; }
///
/// 消息类型.
///
[SugarColumn(ColumnName = "F_MESSAGETYPE")]
public string? MessageType { get; set; }
///
/// 标题.
///
[SugarColumn(ColumnName = "F_TITLE")]
public string? Title { get; set; }
///
/// 内容.
///
[SugarColumn(ColumnName = "F_CONTENT")]
public string? Content { get; set; }
///
/// 模板编号.
///
[SugarColumn(ColumnName = "F_TEMPLATECODE")]
public string? TemplateCode { get; set; }
///
/// 跳转方式.
///
[SugarColumn(ColumnName = "F_WxSkip")]
public string? WxSkip { get; set; }
///
/// 小程序id.
///
[SugarColumn(ColumnName = "F_XcxAppId")]
public string? XcxAppId { get; set; }
///
/// 排序.
///
[SugarColumn(ColumnName = "F_SORTCODE")]
public long? SortCode { get; set; }
///
/// 说明.
///
[SugarColumn(ColumnName = "F_DESCRIPTION")]
public string? Description { get; set; }
///
/// 租户id.
///
[SugarColumn(ColumnName = "F_TENANTID")]
public string? TenantId { get; set; }
}