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

46 lines
1.1 KiB
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_SMS_FIELD")]
public class MessageSmsFieldEntity : CLDEntityBase
{
/// <summary>
/// 参数id.
/// </summary>
[SugarColumn(ColumnName = "F_FIELDID")]
public string? FieldId { get; set; }
/// <summary>
/// 短信变量.
/// </summary>
[SugarColumn(ColumnName = "F_SMSFIELD")]
public string? SmsField { 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; }
}