纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.0 KiB

3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Entity
  6. {
  7. public class LOTCreateIModel
  8. {
  9. /// <summary>
  10. /// 条码
  11. /// </summary>
  12. public string LotNo { get; set; }
  13. /// <summary>
  14. /// 操作人
  15. /// </summary>
  16. public string User { get; set; }
  17. /// <summary>
  18. /// 操作时间
  19. /// </summary>
  20. public DateTime MTime { get; set; }
  21. /// <summary>
  22. /// 站点
  23. /// </summary>
  24. public string WorkPoint { get; set; }
  25. public List<LOTCreateIModelInfo> detail { get; set; }
  26. }
  27. public class LOTCreateIModelInfo
  28. {
  29. /// 合并条码
  30. /// </summary>
  31. public string CurrentLotNo { get; set; }
  32. /// <summary>
  33. /// 合并数量
  34. /// </summary>
  35. public string CurrentQuantity { get; set; }
  36. /// <summary>
  37. /// 站点
  38. /// </summary>
  39. public string WorkPoint { get; set; }
  40. }
  41. }