WmsStkTrayResult.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NXWMS.Model.AppModels.Result.Balance
  7. {
  8. public class WmsStkTrayResult
  9. {
  10. public int TRAY_ID { get; set; }
  11. public string NEWID { get; set; }
  12. public string TRAY_CODE { get; set; }
  13. public string PALLET_CODE { get; set; }
  14. public decimal WEIGHT { get; set; }
  15. public decimal HEIGHT { get; set; }
  16. public int TRAYS_TYPE { get; set; }
  17. public string TRAYS_TYPE_NAME { get; set; }
  18. public int TRAY_LOADED_TYPE { get; set; }
  19. public string TRAY_LOADED_TYPE_NAME { get; set; }
  20. public int TRAY_STATUS { get; set; }
  21. public string TRAY_STATUS_NAME { get; set; }
  22. public string DESCRIBE { get; set; }
  23. public int CREATE_BY { get; set; }
  24. public string CREATE_NAME { get; set; }
  25. public DateTime CREATE_TIME { get; set; }
  26. public int UPDATE_BY { get; set; }
  27. public string UPDATE_NAME { get; set; }
  28. public DateTime UPDATE_TIME { get; set; }
  29. public int DATA_VERSION { get; set; }
  30. public string REMARKS1 { get; set; }
  31. public string REMARKS2 { get; set; }
  32. public string REMARKS3 { get; set; }
  33. public string REMARKS4 { get; set; }
  34. public string REMARKS5 { get; set; }
  35. public List<WmsStkTrayDtlResult> WmsStkTrayDtlList { get; set; }
  36. }
  37. }