Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application/Services/DbModels/FlLabelTemplateRegionDbEntity.cs 459 Bytes
49755ef0   李曜臣   6-12代码优化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  using SqlSugar;
  
  namespace FoodLabeling.Application.Services.DbModels;
  
  [SugarTable("fl_label_template_region")]
  public class FlLabelTemplateRegionDbEntity
  {
      [SugarColumn(IsPrimaryKey = true)]
      public string Id { get; set; } = string.Empty;
  
      public string TemplateId { get; set; } = string.Empty;
  
      public string GroupId { get; set; } = string.Empty;
  
      public DateTime CreationTime { get; set; }
  
      public string? CreatorId { get; set; }
  }