FJSyncMaterInfoListRequest.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.request.share
  5. {
  6. public class FJSyncMaterInfoListRequest:BaseRequest
  7. {
  8. /// <summary>
  9. /// 过账凭证号
  10. /// </summary>
  11. public string ReqId { get; set; }
  12. public List<FJSyncMaterInfoListRequestItem> ListInfo { get; set; }
  13. }
  14. public class FJSyncMaterInfoListRequestItem
  15. {
  16. public string MatCode { get; set; }
  17. public string MatName { get; set; }
  18. public string Describe { get; set; }
  19. public string ProCode { get; set; }
  20. public string ProName { get; set; }
  21. public string ProStre { get; set; }
  22. public decimal LinearMax { get; set; }
  23. public decimal LinearMin { get; set; }
  24. public decimal LinearTar { get; set; }
  25. public string Plating { get; set; }
  26. public decimal PlatingWeight { get; set; }
  27. public decimal PlatingConQty { get; set; }
  28. public decimal Mono { get; set; }
  29. public bool IsHold { get; set; }
  30. public decimal HoldDuration { get; set; }
  31. public string SpoolType { get; set; }
  32. public string SpoolCode { get; set; }
  33. public string Unit { get; set; }
  34. public DateTime UpdatedTime { get; set; }
  35. }
  36. }