Blame view

netcore/src/Modularity/Message/NCC.Message.Entitys/Entity/ImReplyEntity.cs 1.01 KB
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  using NCC.Common.Const;
  using NCC.Common.Entity;
  using SqlSugar;
  using System;
  
  namespace NCC.Message.Entitys
  {
      /// <summary>
      /// 聊天会话
      /// </summary>
      [SugarTable("BASE_IMREPLY")]
      [Tenant(ClaimConst.TENANT_ID)]
      public class ImReplyEntity : EntityBase<string>
      {
          /// <summary>
          /// 发送者
          /// </summary>
          /// <returns></returns>
          [SugarColumn(ColumnName = "F_UserId")]
          public string UserId { get; set; }
  
          /// <summary>
          /// 接收用户
          /// </summary>
          /// <returns></returns>
          [SugarColumn(ColumnName = "F_ReceiveUserId")]
          public string ReceiveUserId { get; set; }
  
          /// <summary>
          /// 接收用户时间
          /// </summary>
          /// <returns></returns>
          [SugarColumn(ColumnName = "F_ReceiveTime")]
          public DateTime? ReceiveTime { get; set; }
      }
  }