WcsMotBalanceMonitor.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.Monitor
  7. {
  8. public class WcsMotBalanceMonitor
  9. {
  10. public string REGION_CODE { get; set; }
  11. public string REGION_NAME { get; set; }
  12. public string SHELF_CODE { get; set; }
  13. public string SHELF_NAME { get; set; }
  14. public string DEV_TYPE_CODE { get; set; }
  15. public string DEV_TYPE_NAME { get; set; }
  16. public string DEV_CODE { get; set; }
  17. public string DEV_NAME { get; set; }
  18. public string BIN_CODE { get; set; }
  19. public string BIN_NAME { get; set; }
  20. public int BIN_ROW { get; set; }
  21. public int BIN_COLUMN { get; set; }
  22. public int BIN_LAYER { get; set; }
  23. public int USED_FLAG { get; set; }
  24. public string USED_FLAG_NAME { get; set; }
  25. public int BALANCE_ID { get; set; }
  26. public string TRAY_CODE { get; set; }
  27. public string PALLET_CODE { get; set; }
  28. public int TRAYS_TYPE { get; set; }
  29. public string TRAYS_TYPE_NAME { get; set; }
  30. public int TRAY_LOADED_TYPE { get; set; }
  31. public string TRAY_LOADED_TYPE_NAME { get; set; }
  32. public int BALANCE_STATUS { get; set; }
  33. public string BALANCE_STATUS_NAME { get; set; }
  34. public int TASK_NO { get; set; }
  35. public int CMD_NO { get; set; }
  36. }
  37. }