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.

34 lines
833 B

1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ICSSoft.Entity
  7. {
  8. public class CartScheduleModel
  9. {
  10. /// <summary>
  11. /// 车次编号
  12. /// </summary>
  13. public string CartNo { get; set; }
  14. /// <summary>
  15. /// 站点
  16. /// </summary>
  17. public string WorkPoint { get; set; }
  18. /// <summary>
  19. /// 用户
  20. /// </summary>
  21. public string User { get; set; }
  22. public List<CartScheduleDetailModel> detail { get; set; }
  23. public class CartScheduleDetailModel
  24. {
  25. /// <summary>
  26. /// 物料条码
  27. /// </summary>
  28. public string LotNo { set; get; }
  29. public string Quantity { set; get; }
  30. }
  31. }
  32. }