Blame view

antis-ncc-net-core/NCC.BlindBox.Entitys/MBT人格/Entity/TbMbtCharacterEntity.cs 1.14 KB
03207d5d   wwk   1
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
37
38
39
40
41
42
43
44
45
  using NCC.Common.Const;
  using SqlSugar;
  using System;
  
  namespace NCC.Education.Entitys
  {
      /// <summary>
      /// MBT人格
      /// </summary>
      [SugarTable("tb_MbtCharacter")]
      [Tenant(ClaimConst.TENANT_ID)]
      public class TbMbtCharacterEntity
      {
          /// <summary>
          /// 主键
          /// </summary>
          [SugarColumn(ColumnName = "F_Id", IsPrimaryKey = true)]
          public string Id { get; set; }
          
          /// <summary>
          /// 名称
          /// </summary>
          [SugarColumn(ColumnName = "F_Name")]        
          public string Name { get; set; }
          
          /// <summary>
          /// 规则
          /// </summary>
          [SugarColumn(ColumnName = "F_Rule")]        
          public string Rule { get; set; }
          
          /// <summary>
          /// 创建时间
          /// </summary>
          [SugarColumn(ColumnName = "F_CreatorTime")]        
          public DateTime? CreatorTime { get; set; }
          
          /// <summary>
          /// 修改时间
          /// </summary>
          [SugarColumn(ColumnName = "F_LastModifyTime")]        
          public DateTime? LastModifyTime { get; set; }
          
      }
  }