70 lines
1.7 KiB
C#
70 lines
1.7 KiB
C#
using JNPF.Common.Contracts;
|
||
using SqlSugar;
|
||
|
||
namespace JNPF.Message.Entitys;
|
||
|
||
/// <summary>
|
||
/// 消息实例
|
||
/// 版 本:V3.2
|
||
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
|
||
/// 日 期:2021-06-01.
|
||
/// </summary>
|
||
[SugarTable("BASE_MESSAGE")]
|
||
public class MessageEntity : CLDEntityBase
|
||
{
|
||
/// <summary>
|
||
/// 类别:1-通知公告,2-系统消息、3-私信消息.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_TYPE")]
|
||
public int? Type { get; set; }
|
||
|
||
/// <summary>
|
||
/// 标题.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_TITLE")]
|
||
public string Title { get; set; } = string.Empty;
|
||
|
||
/// <summary>
|
||
/// 正文.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_BODYTEXT")]
|
||
public string BodyText { get; set; }
|
||
|
||
/// <summary>
|
||
/// 优先.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_PRIORITYLEVEL")]
|
||
public int? PriorityLevel { get; set; }
|
||
|
||
/// <summary>
|
||
/// 收件用户.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_TOUSERIDS")]
|
||
public string ToUserIds { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否阅读.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_ISREAD")]
|
||
public int? IsRead { get; set; }
|
||
|
||
/// <summary>
|
||
/// 描述.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_DESCRIPTION")]
|
||
public string Description { get; set; }
|
||
|
||
/// <summary>
|
||
/// 排序码.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_SORTCODE")]
|
||
public long? SortCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 附件.
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "F_FILES")]
|
||
public string Files { get; set; }
|
||
[SugarColumn(ColumnName = "F_FLOWTYPE")]
|
||
public int? FlowType { get; set; }
|
||
} |