Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application/Services/DbModels/FlLabelTemplateLocationDbEntity.cs 375 Bytes
919c1b6a   李曜臣   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  using SqlSugar;
  
  namespace FoodLabeling.Application.Services.DbModels;
  
  [SugarTable("fl_label_template_location")]
  public class FlLabelTemplateLocationDbEntity
  {
      [SugarColumn(IsPrimaryKey = true)]
      public string Id { get; set; } = string.Empty;
  
      public string TemplateId { get; set; } = string.Empty;
  
      public string LocationId { get; set; } = string.Empty;
  }