ApplyLocRequest.cs 816 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.response.hj
  5. {
  6. public class ApplyLocRequest
  7. {
  8. public long WarehuoseId { get; set; }
  9. public int Size { get; set; }
  10. public int TunnelNum { get; set; }
  11. public long MaterialId { get; set; }
  12. public string MaterialCode { get; set; }
  13. public bool IsMove { get; set; } = false;
  14. public int Floor { get; set; }
  15. public string CellCode { get; set; }
  16. public int Fork { get; set; }
  17. public string Wind { get; set; }
  18. public bool IsControlpanel { get; set; }
  19. public bool IsTorsChk { get; set; }
  20. public int TorsChkQty { get; set; }
  21. public DateTime ProductTime { get; set; }
  22. public string Wbgroup { get; set; }
  23. }
  24. }