ProductionLogDto.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Domain.Entities;
  4. namespace ShwasherSys.ProductionOrderInfo.Dto
  5. {
  6. [AutoMapTo(typeof(ProductionLog)),AutoMapFrom(typeof(ProductionLog))]
  7. public class ProductionLogDto:Entity<int>
  8. {
  9. public string ProductionNo { get; set; }
  10. /// <summary>
  11. /// 流转单号
  12. /// </summary>
  13. public string ProductOrderNo { get; set; }
  14. /// <summary>
  15. /// 员工Id
  16. /// </summary>
  17. public int EmployeeId { get; set; }
  18. /// <summary>
  19. /// 车号
  20. /// </summary>
  21. public string CarNo { get; set; }
  22. /// <summary>
  23. /// 产品数量(Kg)
  24. /// </summary>
  25. [DecimalPrecision]
  26. public decimal QuantityWeight { get; set; }
  27. /// <summary>
  28. /// 千件重
  29. /// </summary>
  30. [DecimalPrecision]
  31. public decimal KgWeight { get; set; }
  32. /// <summary>
  33. /// 产品数量(千件)
  34. /// </summary>
  35. [DecimalPrecision]
  36. public decimal QuantityPcs { get; set; }
  37. public DateTime CreationTime{ get; set; }
  38. public string EmployeeNo { get; set; }
  39. public string EmployeeName { get; set; }
  40. }
  41. }