StockTemp.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.response.sx
  5. {
  6. public class StockTemp
  7. {
  8. public string MatCode { get; set; }
  9. public string InvBarCode { get; set; }
  10. public string Grade { get; set; }
  11. public string InvStateCode { get; set; }
  12. public DateTime ProductTime { get; set; }
  13. public DateTime OneInTime { get; set; }
  14. public string WbGroupCode { get; set; }
  15. public bool IsTorsChk { get; set; }
  16. public int TorsChkQty { get; set; }
  17. public decimal? TorsChkValue { get; set; }
  18. public decimal HoldTime { get; set; }
  19. public string ProductMachCode { get; set; }
  20. public bool IsControlpanel { get; set; }
  21. public string HWTypeCode { get; set; }
  22. public decimal SolderCount { get; set; }
  23. public bool IsRework { get; set; }
  24. public bool IsBlack { get; set; }
  25. public int Col { get; set; }
  26. public int Layer { get; set; }
  27. public string Shelf { get; set; }
  28. public int Depth { get; set; }
  29. public string Code { get; set; }
  30. public int Tunnel { get; set; }
  31. public string SCRel { get; set; }
  32. public int Floor { get; set; }
  33. public string WarehouseCode { get; set; }
  34. public string ContGrpBarCode { get; set; }
  35. public long? ContGrpId { get; set; }
  36. public long Id { get; set; }
  37. public LocationState StateNum { get; set; }
  38. public string SkuCode { get; set; }
  39. public string Wind { get; set; }
  40. public string InDocsNo { get; set; }
  41. public string BatchNo { get; set; }
  42. }
  43. public class SrmTaskTmep
  44. {
  45. public string Srm { get; set; }
  46. public int TaskCount { get; set; }
  47. public List<string> LocList { get; set; } = new List<string>();
  48. }
  49. }