FJSyncMaterInfoListRequest.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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. public List<FJSyncMaterInfoListRequestItem> ListInfo { get; set; }
  9. }
  10. public class FJSyncMaterInfoListRequestItem
  11. {
  12. public string MatCode { get; set; }
  13. public string MatName { get; set; }
  14. public string Describe { get; set; }
  15. public string ProCode { get; set; }
  16. public string ProName { get; set; }
  17. public string ProStre { get; set; }
  18. public decimal LinearMax { get; set; }
  19. public decimal LinearMin { get; set; }
  20. public decimal LinearTar { get; set; }
  21. public string Plating { get; set; }
  22. public decimal PlatingWeight { get; set; }
  23. public decimal PlatingConQty { get; set; }
  24. public decimal Mono { get; set; }
  25. public bool IsHold { get; set; }
  26. public decimal HoldDuration { get; set; }
  27. public string SpoolType { get; set; }
  28. public string SpoolCode { get; set; }
  29. public string Unit { get; set; }
  30. public DateTime UpdatedTime { get; set; }
  31. }
  32. }