using SqlSugar; using System.ComponentModel.DataAnnotations; namespace HL_FristAidPlatform_Models { /// /// 消息接收人 /// public class T_Service_NoticeReceiving { /// /// ID /// [SugarColumn(IsIdentity = true)] public long ID { get; set; } /// /// GUID /// [Key] [SugarColumn(IsPrimaryKey = true)] public string GUID { get; set; } /// /// 用户编号 /// public long UserID { get; set; } /// /// 阅读状态0未读1已读 /// public int ReadState { get; set; } /// /// 消息编号 /// public long NoticeID { get; set; } /// /// 短信编号 /// public long NoticeSMSID { get; set; } /// /// 首次阅读时间 /// public string FirstReadingTime { get; set; } /// /// 阅读总数 /// public int TotalReading { get; set; } /// /// 删除标志 /// public int DeleteFlag { get; set; } } }