Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application/Services/DbModels/FlLabelPrintDataDbEntity.cs 599 Bytes
59e51671   “wangming”   1
1
2
3
4
5
  using SqlSugar;
  
  namespace FoodLabeling.Application.Services.DbModels;
  
  /// <summary>
e1c4ae8e   李曜臣   5-19泰额版优化
6
  /// 标签打印数据明细(对应表:fl_label_print_data?
59e51671   “wangming”   1
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  /// </summary>
  [SugarTable("fl_label_print_data")]
  public class FlLabelPrintDataDbEntity
  {
      [SugarColumn(IsPrimaryKey = true)]
      public string Id { get; set; } = string.Empty;
  
      public string PrintTaskId { get; set; } = string.Empty;
  
      public string ElementId { get; set; } = string.Empty;
  
      public string? ElementName { get; set; }
  
      public string? RenderValue { get; set; }
  
      public string? RenderConfigJson { get; set; }
  }