Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application/Services/DbModels/FlLabelPrintDataDbEntity.cs 599 Bytes
536d25c4   李曜臣   打印预览,产品分类接口实现
1
2
3
4
5
6
7
8
9
10
11
12
13
  using SqlSugar;
  
  namespace FoodLabeling.Application.Services.DbModels;
  
  /// <summary>
  /// 标签打印数据明细(对应表:fl_label_print_data
  /// </summary>
  [SugarTable("fl_label_print_data")]
  public class FlLabelPrintDataDbEntity
  {
      [SugarColumn(IsPrimaryKey = true)]
      public string Id { get; set; } = string.Empty;
  
c304e27c   李曜臣   打印日志优化
14
      public string PrintTaskId { get; set; } = string.Empty;
536d25c4   李曜臣   打印预览,产品分类接口实现
15
  
c304e27c   李曜臣   打印日志优化
16
      public string ElementId { get; set; } = string.Empty;
536d25c4   李曜臣   打印预览,产品分类接口实现
17
  
c304e27c   李曜臣   打印日志优化
18
      public string? ElementName { get; set; }
536d25c4   李曜臣   打印预览,产品分类接口实现
19
  
c304e27c   李曜臣   打印日志优化
20
      public string? RenderValue { get; set; }
536d25c4   李曜臣   打印预览,产品分类接口实现
21
  
c304e27c   李曜臣   打印日志优化
22
      public string? RenderConfigJson { get; set; }
536d25c4   李曜臣   打印预览,产品分类接口实现
23
  }