Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/UsAppLabeling/UsAppLabelPrintOutputDto.cs 410 Bytes
c304e27c   李曜臣   打印日志优化
1
2
  using System.Collections.Generic;
  
536d25c4   李曜臣   打印预览,产品分类接口实现
3
4
5
  namespace FoodLabeling.Application.Contracts.Dtos.UsAppLabeling;
  
  /// <summary>
43d16ca6   杨鑫   打印日志
6
  /// App 打印出参(接口 9 / 11
536d25c4   李曜臣   打印预览,产品分类接口实现
7
8
9
10
11
12
  /// </summary>
  public class UsAppLabelPrintOutputDto
  {
      public string TaskId { get; set; } = string.Empty;
  
      public int PrintQuantity { get; set; }
43d16ca6   杨鑫   打印日志
13
14
15
16
  
      public string? BatchId { get; set; }
  
      public List<string> TaskIds { get; set; } = new();
536d25c4   李曜臣   打印预览,产品分类接口实现
17
  }