Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application/Services/DbModels/FlLabelTemplateDbEntity.cs 1.47 KB
919c1b6a   李曜臣   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  using SqlSugar;
  
  namespace FoodLabeling.Application.Services.DbModels;
  
  [SugarTable("fl_label_template")]
  public class FlLabelTemplateDbEntity
  {
      [SugarColumn(IsPrimaryKey = true)]
      public string Id { get; set; } = string.Empty;
  
      public bool IsDeleted { get; set; }
  
      public DateTime CreationTime { get; set; }
  
      public string? CreatorId { get; set; }
  
      public string? LastModifierId { get; set; }
  
      public DateTime? LastModificationTime { get; set; }
  
      public string ConcurrencyStamp { get; set; } = string.Empty;
  
      public string TemplateCode { get; set; } = string.Empty;
  
      public string TemplateName { get; set; } = string.Empty;
  
      public string? LabelType { get; set; }
  
      public string Unit { get; set; } = "inch";
  
      public decimal Width { get; set; }
  
      public decimal Height { get; set; }
  
      public string AppliedLocationType { get; set; } = "ALL";
  
49755ef0   李曜臣   6-12代码优化
37
38
39
40
41
42
      /// <summary>适用 Company 范围:ALL / SPECIFIED(见 fl_label_template_partner</summary>
      public string AppliedPartnerType { get; set; } = "ALL";
  
      /// <summary>适用 Region 范围:ALL / SPECIFIED(见 fl_label_template_region</summary>
      public string AppliedRegionType { get; set; } = "ALL";
  
919c1b6a   李曜臣   1
43
44
45
46
      public bool ShowRuler { get; set; }
  
      public bool ShowGrid { get; set; }
  
540ac0e3   杨鑫   前端修改bug
47
48
49
      /// <summary>整标签外框:none / line / dotted</summary>
      public string BorderType { get; set; } = "none";
  
919c1b6a   李曜臣   1
50
51
52
53
      public int VersionNo { get; set; }
  
      public bool State { get; set; }
  }