Files
tnb.server/message/Tnb.Message.Entitys/Entity/MessageTemplateParamEntity.cs
2024-04-23 10:16:16 +08:00

40 lines
1000 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Message.Entitys.Entity;
/// <summary>
/// 消息模板参数
/// 版 本V3.2
/// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
/// 日 期2021-06-01.
/// </summary>
[SugarTable("BASE_MESSAGE_TEMPLATE_PARAM")]
public class MessageTemplateParamEntity : CLDEntityBase
{
/// <summary>
/// 参数名称.
/// </summary>
[SugarColumn(ColumnName = "F_FIELDNAME")]
public string? FieldName { get; set; }
/// <summary>
/// 模板id.
/// </summary>
[SugarColumn(ColumnName = "F_TEMPLATEID")]
public string? TemplateId { get; set; }
/// <summary>
/// 参数.
/// </summary>
[SugarColumn(ColumnName = "F_FIELD")]
public string? Field { get; set; }
// modified by PhilPan 基类包含此属性
///// <summary>
///// 租户id.
///// </summary>
//[SugarColumn(ColumnName = "F_TENANTID")]
//public string? TenantId { get; set; }
}