Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/UsAppLabeling/UsAppLabelPrintOutputDto.cs 410 Bytes
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  using System.Collections.Generic;
  
  namespace FoodLabeling.Application.Contracts.Dtos.UsAppLabeling;
  
  /// <summary>
  /// App 打印出参(接口 9 / 11
  /// </summary>
  public class UsAppLabelPrintOutputDto
  {
      public string TaskId { get; set; } = string.Empty;
  
      public int PrintQuantity { get; set; }
  
      public string? BatchId { get; set; }
  
      public List<string> TaskIds { get; set; } = new();
  }