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_PARAM")]
public class MessageTemplateParamEntity : CLDEntityBase
{
///
/// 参数名称.
///
[SugarColumn(ColumnName = "F_FIELDNAME")]
public string? FieldName { get; set; }
///
/// 模板id.
///
[SugarColumn(ColumnName = "F_TEMPLATEID")]
public string? TemplateId { get; set; }
///
/// 参数.
///
[SugarColumn(ColumnName = "F_FIELD")]
public string? Field { get; set; }
///
/// 租户id.
///
[SugarColumn(ColumnName = "F_TENANTID")]
public string? TenantId { get; set; }
}