SXProductStockInFeedBackRequest.cs 711 B

123456789101112131415161718192021222324252627
  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 List<SXProductStockInFeedBackRequestItem> ListInfo { get; set; }
  10. }
  11. public class SXProductStockInFeedBackRequestItem
  12. {
  13. /// <summary>
  14. /// 工字轮条码
  15. /// </summary>
  16. public string SpoolCode { get; set; }
  17. /// <summary>
  18. /// 材料号
  19. /// </summary>
  20. public string MatBarCode { get; set; }
  21. /// <summary>
  22. /// 库位号
  23. /// </summary>
  24. public string LocCode { get; set; }
  25. }
  26. }