SxSyncMaterInfoListRequest.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System.Collections.Generic;
  2. namespace wms.dto.request.share
  3. {
  4. /// <summary>
  5. /// 时效库主数据接收
  6. /// </summary>
  7. public class SxSyncMaterInfoListRequest : BaseRequest
  8. {
  9. public List<SxSyncMaterInfoRequestItem> ListInfo { get; set; }
  10. }
  11. public class SxSyncMaterInfoRequestItem
  12. {
  13. public string MatCode { get; set; }
  14. public string MatName { get; set; }
  15. public string Describe { get; set; }
  16. public string ProCode { get; set; }
  17. public string ProName { get; set; }
  18. public decimal Length { get; set; }
  19. public decimal OilQty { get; set; }
  20. public string LubType { get; set; }
  21. public decimal LineSpace { get; set; }
  22. public string ProStre { get; set; }
  23. public string ProMix { get; set; }
  24. public string ProDescribe { get; set; }
  25. public decimal LayLength { get; set; }
  26. /// <summary>
  27. /// 捻向
  28. /// </summary>
  29. public string LayDirect { get; set; }
  30. public decimal LinearMax { get; set; }
  31. public decimal LinearMin { get; set; }
  32. public decimal LinearTar { get; set; }
  33. public bool IsHold { get; set; }
  34. public decimal HoldDuration { get; set; }
  35. public string SpoolType { get; set; }
  36. public string SpoolName { get; set; }
  37. public string Plating { get; set; }
  38. public string CumIndex { get; set; }
  39. public string SelIndex { get; set; }
  40. /// <summary>
  41. /// 镀层克重
  42. /// </summary>
  43. public decimal PlatingWeight { get; set; }
  44. }
  45. }