CreatePackInfoDto.cs 925 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Abp.Application.Services.Dto;
  7. namespace ShwasherSys.PackageInfo.Dto
  8. {
  9. public class CreatePackInfoDto
  10. {
  11. public string PackageApplyNo { get; set; }
  12. public string ProductionOrderNo { get; set; }
  13. public string PackageProductNo { get; set; }
  14. public string ProductNo { get; set; }
  15. public int PackType { get; set; }
  16. public decimal Quantity { get; set; }
  17. public decimal Quantity2 { get; set; }
  18. public decimal KgWeight { get; set; }
  19. public decimal PackageSpecification { get; set; }
  20. public decimal PackageCount { get; set; }
  21. public string PackageEnterNum { get; set; }
  22. public string VerifyUser { get;set;}
  23. public string PackageUser { get;set;}
  24. public string Remark { get; set; }
  25. }
  26. }