Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application/Services/DbModels/FlGroupDbEntity.cs 952 Bytes
59e51671   “wangming”   1
1
2
3
4
5
  using SqlSugar;
  
  namespace FoodLabeling.Application.Services.DbModels;
  
  /// <summary>
e1c4ae8e   李曜臣   5-19泰额版优化
6
  /// 组织/分组(Account Management / Group,表 fl_group?
59e51671   “wangming”   1
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  /// </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>
e1c4ae8e   李曜臣   5-19泰额版优化
25
      /// 组织名称(Group Name?
59e51671   “wangming”   1
26
27
28
29
      /// </summary>
      public string GroupName { get; set; } = string.Empty;
  
      /// <summary>
e1c4ae8e   李曜臣   5-19泰额版优化
30
      /// 所属合作伙�?Idfl_partner.Id?
59e51671   “wangming”   1
31
32
33
34
      /// </summary>
      public string PartnerId { get; set; } = string.Empty;
  
      /// <summary>
e1c4ae8e   李曜臣   5-19泰额版优化
35
      /// 是否启用(对�?UI Active?
59e51671   “wangming”   1
36
37
38
      /// </summary>
      public bool State { get; set; }
  }