Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/Label/LabelGetOutputDto.cs 850 Bytes
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
  namespace FoodLabeling.Application.Contracts.Dtos.Label;
  
  public class LabelGetOutputDto
  {
      public string Id { get; set; } = string.Empty;
  
      public string LabelName { get; set; } = string.Empty;
  
      public string LocationId { get; set; } = string.Empty;
  
      public string LocationName { get; set; } = string.Empty;
  
      public string LabelCategoryId { get; set; } = string.Empty;
  
      public string LabelCategoryName { get; set; } = string.Empty;
  
      public string LabelTypeId { get; set; } = string.Empty;
  
      public string LabelTypeName { get; set; } = string.Empty;
  
      public string TemplateCode { get; set; } = string.Empty;
  
      public string TemplateName { get; set; } = string.Empty;
  
      public bool State { get; set; }
  
      public object? LabelInfoJson { get; set; }
  
      public List<string> ProductIds { get; set; } = new();
  }