PTSyncMaterInfoResponse.cs 985 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.response.pt
  5. {
  6. public class PTSyncMaterInfoResponse
  7. {
  8. public int TotalCount { get; set; }
  9. public List<PTSyncMaterInfoResponseItem> ResData { get; set; }
  10. }
  11. public class PTSyncMaterInfoResponseItem
  12. {
  13. public string MatCode { get; set; }
  14. public string MatName { get; set; }
  15. public string HeadTypeCode { get; set; }
  16. public string LeafTypeCode { get; set; }
  17. public string Describe { get; set; }
  18. public string Strength { get; set; }
  19. public string Plating { get; set; }
  20. public decimal PlatingWeight { get; set; }
  21. public decimal PlatingConQty { get; set; }
  22. public decimal Linear { get; set; }
  23. public bool IsHold { get; set; }
  24. public decimal HoldDuration { get; set; }
  25. public string WeightUnit { get; set; }
  26. public DateTime UpdatedTime { get; set; }
  27. }
  28. }