SXProductStockInFeedBackRequest.cs 798 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.request.sx
  5. {
  6. public class SXProductStockInFeedBackRequest:BaseRequest
  7. {
  8. public string WareCode { get; set; }
  9. public string WareName { get; set; }
  10. public string Type { get; set; }
  11. public List<SXProductStockInFeedBackRequestItem> ListInfo { get; set; }
  12. }
  13. public class SXProductStockInFeedBackRequestItem
  14. {
  15. /// <summary>
  16. /// 工字轮条码
  17. /// </summary>
  18. public string SpoolCode { get; set; }
  19. /// <summary>
  20. /// 材料号
  21. /// </summary>
  22. public string MatBarCode { get; set; }
  23. /// <summary>
  24. /// 库位号
  25. /// </summary>
  26. public string LocCode { get; set; }
  27. }
  28. }