using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Message.Entitys.Entity;
///
/// 消息监控
/// 版 本:V3.2
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
/// 日 期:2021-06-01.
///
[SugarTable("BASE_MESSAGE_MONITOR")]
public class MessageMonitorEntity : CLDEntityBase
{
///
/// 账号id.
///
[SugarColumn(ColumnName = "F_ACCOUNTID")]
public string? AccountId { get; set; }
///
/// 账号名称.
///
[SugarColumn(ColumnName = "F_ACCOUNTNAME")]
public string? AccountName { get; set; }
///
/// 账号编码.
///
[SugarColumn(ColumnName = "F_ACCOUNTCODE")]
public string? AccountCode { get; set; }
///
/// 消息类型.
///
[SugarColumn(ColumnName = "F_MESSAGETYPE")]
public string? MessageType { get; set; }
///
/// 消息来源.
///
[SugarColumn(ColumnName = "F_MESSAGESOURCE")]
public string? MessageSource { get; set; }
///
/// 发送时间.
///
[SugarColumn(ColumnName = "F_SENDTIME")]
public DateTime? SendTime { get; set; }
///
/// 消息模板id.
///
[SugarColumn(ColumnName = "F_MESSAGETEMPLATEID")]
public string? MessageTemplateId { get; set; }
///
/// 标题.
///
[SugarColumn(ColumnName = "F_TITLE")]
public string? Title { get; set; }
///
/// 接收人.
///
[SugarColumn(ColumnName = "F_RECEIVEUSER")]
public string? ReceiveUser { get; set; }
///
/// 内容.
///
[SugarColumn(ColumnName = "F_CONTENT")]
public string? Content { get; set; }
///
/// 租户id.
///
[SugarColumn(ColumnName = "F_TENANTID")]
public string? TenantId { get; set; }
}