Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/UsAppLabeling/UsAppLabelPrintOutputDto.cs 258 Bytes
536d25c4   李曜臣   打印预览,产品分类接口实现
1
2
3
4
5
6
7
8
9
10
11
  namespace FoodLabeling.Application.Contracts.Dtos.UsAppLabeling;
  
  /// <summary>
  /// App 打印出参
  /// </summary>
  public class UsAppLabelPrintOutputDto
  {
      public string TaskId { get; set; } = string.Empty;
  
      public int PrintQuantity { get; set; }
  }