Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/Label/LabelCreateInputVo.cs 597 Bytes
919c1b6a   李曜臣   1
1
2
3
4
  namespace FoodLabeling.Application.Contracts.Dtos.Label;
  
  public class LabelCreateInputVo
  {
8e0c49eb   李曜臣   产品标签类别优化;
5
      public string? LabelCode { get; set; }
919c1b6a   李曜臣   1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  
      public string LabelName { get; set; } = string.Empty;
  
      public string TemplateCode { get; set; } = string.Empty;
  
      public string LocationId { get; set; } = string.Empty;
  
      public string LabelCategoryId { get; set; } = string.Empty;
  
      public string LabelTypeId { get; set; } = string.Empty;
  
      public List<string> ProductIds { get; set; } = new();
  
      public object? LabelInfoJson { get; set; }
  
      public bool State { get; set; } = true;
  }