Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/Training/TrainingFileScopeOutputDto.cs 748 Bytes
177fe12d   李曜臣   2026-08-06代码优化
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
  namespace FoodLabeling.Application.Contracts.Dtos.Training;
  
  public class TrainingFileScopeOutputDto
  {
      public string AppliedPartnerType { get; set; } = "ALL";
  
      public string Company { get; set; } = string.Empty;
  
      public List<string> PartnerIds { get; set; } = new();
  
      public List<string> CompanyIds { get; set; } = new();
  
      public string AppliedRegionType { get; set; } = "ALL";
  
      public string Region { get; set; } = string.Empty;
  
      public List<string> RegionIds { get; set; } = new();
  
      public List<string> GroupIds { get; set; } = new();
  
      public string AvailabilityType { get; set; } = "ALL";
  
      public string Location { get; set; } = string.Empty;
  
      public List<string> LocationIds { get; set; } = new();
  }