Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application/Services/DbModels/FlLabelPrintTaskDbEntity.cs 1.29 KB
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_task
  /// </summary>
  [SugarTable("fl_label_print_task")]
  public class FlLabelPrintTaskDbEntity
  {
      [SugarColumn(IsPrimaryKey = true)]
      public string Id { get; set; } = string.Empty;
  
c304e27c   李曜臣   打印日志优化
14
      public string? BatchId { get; set; }
536d25c4   李曜臣   打印预览,产品分类接口实现
15
  
c304e27c   李曜臣   打印日志优化
16
      public int CopyIndex { get; set; } = 1;
536d25c4   李曜臣   打印预览,产品分类接口实现
17
  
c304e27c   李曜臣   打印日志优化
18
      public string? ClientRequestId { get; set; }
536d25c4   李曜臣   打印预览,产品分类接口实现
19
  
c304e27c   李曜臣   打印日志优化
20
      public string LabelId { get; set; } = string.Empty;
536d25c4   李曜臣   打印预览,产品分类接口实现
21
  
c304e27c   李曜臣   打印日志优化
22
      public string TemplateId { get; set; } = string.Empty;
536d25c4   李曜臣   打印预览,产品分类接口实现
23
  
c304e27c   李曜臣   打印日志优化
24
      public string? LabelTypeId { get; set; }
536d25c4   李曜臣   打印预览,产品分类接口实现
25
26
27
  
      public string? ProductId { get; set; }
  
c304e27c   李曜臣   打印日志优化
28
29
30
      public string? LocationId { get; set; }
  
      public DateTime? BaseTime { get; set; }
536d25c4   李曜臣   打印预览,产品分类接口实现
31
  
c304e27c   李曜臣   打印日志优化
32
      public string? PrintInputJson { get; set; }
536d25c4   李曜臣   打印预览,产品分类接口实现
33
  
c304e27c   李曜臣   打印日志优化
34
      public string? TemplateProductDefaultValuesJson { get; set; }
536d25c4   李曜臣   打印预览,产品分类接口实现
35
  
c304e27c   李曜臣   打印日志优化
36
      public string RenderTemplateJson { get; set; } = string.Empty;
536d25c4   李曜臣   打印预览,产品分类接口实现
37
38
39
40
41
42
  
      public string? PrinterId { get; set; }
  
      public string? PrinterMac { get; set; }
  
      public string? PrinterAddress { get; set; }
c304e27c   李曜臣   打印日志优化
43
44
45
46
47
48
49
50
51
52
  
      public string Status { get; set; } = "CREATED";
  
      public DateTime? PrintedAt { get; set; }
  
      public string? ErrorMessage { get; set; }
  
      public string? CreatedBy { get; set; }
  
      public DateTime CreationTime { get; set; }
536d25c4   李曜臣   打印预览,产品分类接口实现
53
  }