using NCC.Common.Const; using NCC.Common.Entity; using SqlSugar; namespace NCC.Message.Entitys { ///     /// 群组/房间消息     /// 版 本:V1.20.15     /// 版 权:Wesley(https://www.NCCsoft.com)     /// 作 者:NCC开发平台组     /// 日 期:2022-03-16     /// [SugarTable("base_room_message")] [Tenant(ClaimConst.TENANT_ID)] public class RoomMessageEntity : CLDEntityBase { /// /// 房间/群组名 /// [SugarColumn(ColumnName = "F_Name")] public string Name { get; set; } = ""; /// /// 正文 /// [SugarColumn(ColumnName = "F_BodyText")] public string BodyText { get; set; } /// /// 优先 /// [SugarColumn(ColumnName = "F_PriorityLevel")] public int? PriorityLevel { get; set; } /// /// 房间号 /// [SugarColumn(ColumnName = "F_RoomNo")] public string RoomNo { get; set; } /// /// 是否阅读 /// [SugarColumn(ColumnName = "F_ISREAD")] public int? IsRead { get; set; } /// /// 描述 /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string Description { get; set; } /// /// 排序码 /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } /// /// 消息实例ID /// [SugarColumn(ColumnName = "F_ClientId")] public string ClientId { get; set; } /// /// 商品ID /// [SugarColumn(ColumnName = "F_ProductId")] public string ProductId { get; set; } /// /// 店铺Id /// [SugarColumn(ColumnName = "F_ShopId")] public string ShopId { get; set; } } }