FJSyncMaterInfoResponse.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.response.fj
  5. {
  6. public class FJSyncMaterInfoResponse
  7. {
  8. public int TotalCount { get; set; }
  9. public List<FJSyncMaterInfoResponseItem> ResData { get; set; }
  10. }
  11. public class FJSyncMaterInfoResponseItem
  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 string ProStre { get; set; }
  19. public decimal LinearMax { get; set; }
  20. public decimal LinearMin { get; set; }
  21. public decimal LinearTar { get; set; }
  22. public string Plating { get; set; }
  23. public decimal PlatingWeight { get; set; }
  24. public decimal PlatingConQty { get; set; }
  25. public decimal Mono { get; set; }
  26. public bool IsHold { get; set; }
  27. public decimal HoldDuration { get; set; }
  28. public string SpoolType { get; set; }
  29. public string SpoolCode { get; set; }
  30. public string Unit { get; set; }
  31. public DateTime UpdatedTime { get; set; }
  32. }
  33. }