39 lines
966 B
C#
39 lines
966 B
C#
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_SEND_RECORD")]
|
||
public class MessageSendRecordEntity : CLDEntityBase
|
||
{
|
||
/// <summary>
|
||
/// 发送配置id.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_SENDCONFIGID")]
|
||
public string? SendConfigId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 消息来源.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_MESSAGESOURCE")]
|
||
public string? MessageSource { get; set; }
|
||
|
||
/// <summary>
|
||
/// 被引用id.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_USEDID")]
|
||
public string? UsedId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 租户id.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_TENANTID")]
|
||
public string? TenantId { get; set; }
|
||
}
|