Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application/Services/DbModels/FlGroupDbEntity.cs 948 Bytes
4d328ec2   李曜臣   平台端报表reports,仪表盘D...
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
  using SqlSugar;
  
  namespace FoodLabeling.Application.Services.DbModels;
  
  /// <summary>
  /// 组织/分组(Account Management / Group,表 fl_group
  /// </summary>
  [SugarTable("fl_group")]
  public class FlGroupDbEntity
  {
      [SugarColumn(IsPrimaryKey = true)]
      public string Id { get; set; } = string.Empty;
  
      public bool IsDeleted { get; set; }
  
      public DateTime CreationTime { get; set; }
  
      public string? CreatorId { get; set; }
  
      public string? LastModifierId { get; set; }
  
      public DateTime? LastModificationTime { get; set; }
  
      /// <summary>
      /// 组织名称(Group Name
      /// </summary>
      public string GroupName { get; set; } = string.Empty;
  
      /// <summary>
      /// 所属合作伙伴 Idfl_partner.Id
      /// </summary>
      public string PartnerId { get; set; } = string.Empty;
  
      /// <summary>
      /// 是否启用(对应 UI Active
      /// </summary>
      public bool State { get; set; }
  }