ProBoxWeightFeedBackRequest.cs 513 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.request.sx
  5. {
  6. public class ProBoxWeightFeedBackRequest
  7. {
  8. public List<ProBoxWeightFeedBackRequestItem> ListInfo { get; set; }
  9. }
  10. public class ProBoxWeightFeedBackRequestItem
  11. {
  12. /// <summary>
  13. /// 箱号
  14. /// </summary>
  15. public string BoxNo { get; set; }
  16. /// <summary>
  17. /// 重量
  18. /// </summary>
  19. public decimal Weight { get; set; }
  20. }
  21. }