using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Message.Entitys; /// /// 在线聊天 /// 版 本:V3.2 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2021-06-01. /// [SugarTable("BASE_IMCONTENT")] public class IMContentEntity : EntityBase { /// /// 发送者. /// /// [SugarColumn(ColumnName = "F_SENDUSERID")] public string SendUserId { get; set; } /// /// 发送时间. /// /// [SugarColumn(ColumnName = "F_SENDTIME")] public DateTime? SendTime { get; set; } ///  /// 接收者.  ///  /// [SugarColumn(ColumnName = "F_RECEIVEUSERID")] public string ReceiveUserId { get; set; } /// /// 接收时间. /// /// [SugarColumn(ColumnName = "F_RECEIVETIME")] public DateTime? ReceiveTime { get; set; } /// /// 内容. /// /// [SugarColumn(ColumnName = "F_CONTENT")] public string Content { get; set; } /// /// 内容类型:text、img、file. /// [SugarColumn(ColumnName = "F_CONTENTTYPE")] public string ContentType { get; set; } /// /// 状态(0:未读、1:已读). /// /// [SugarColumn(ColumnName = "F_STATE")] public int? State { get; set; } /// /// 删除人. /// [SugarColumn(ColumnName = "F_SENDDELETEMARK")] public string SendDeleteMark { get; set; } }