stocktemp.cs 913 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.request.sx
  5. {
  6. public class stocktemp1
  7. {
  8. public string Code { get; set; }
  9. public long Id { get; set; }
  10. public int Row { get; set; }
  11. public int Col { get; set; }
  12. public int Layer { get; set; }
  13. public int Tunnel { get; set; }
  14. public int Floor { get; set; }
  15. public string ContGrpBarCode { get; set; }
  16. public string Shelf { get; set; }
  17. public string MatCode { get; set; }
  18. public long MatId { get; set; }
  19. public string WbGroupCode { get; set; }
  20. public string InDocsNo { get; set; }
  21. public string Wind { get; set; }
  22. public bool IsControlpanel { get; set; }
  23. public bool IsTorsChk { get; set; }
  24. public int TorsChkQty { get; set; }
  25. public DateTime ProductTime { get; set; }
  26. }
  27. }