WmsTaskResult.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NXWMS.Client.Model.AppModels.Result.WmsTask
  6. {
  7. public class WmsTaskResult
  8. {
  9. public int TASK_ID { get; set; }
  10. public string NEWID { get; set; }
  11. public string WAREHOUSE_CODE { get; set; }
  12. public string WAREHOUSE_NAME { get; set; }
  13. public int TASK_NO { get; set; }
  14. public int CMD_NO { get; set; }
  15. public string TRAY_CODE { get; set; }
  16. public string PALLET_CODE { get; set; }
  17. public int TRAY_LOADED_TYPE { get; set; }
  18. public string TRAY_LOADED_TYPE_NAME { get; set; }
  19. public string SLOC_CODE { get; set; }
  20. public string ELOC_CODE { get; set; }
  21. public string CLOC_CODE { get; set; }
  22. public int TASK_TYPE { get; set; }
  23. public string TASK_TYPE_NAME { get; set; }
  24. public string TASK_MSG { get; set; }
  25. public int ERR_FLAG { get; set; }
  26. public string ERR_FLAG_NAME { get; set; }
  27. public int TASK_PRIORITY { get; set; }
  28. public int TASK_STATUS { get; set; }
  29. public string TASK_STATUS_NAME { get; set; }
  30. public string SBIN_CODE { get; set; }
  31. public string EBIN_CODE { get; set; }
  32. public string ROUTE_CODE { get; set; }
  33. public int CREATE_BY { get; set; }
  34. public string CREATE_NAME { get; set; }
  35. public DateTime CREATE_TIME { get; set; }
  36. public int UPDATE_BY { get; set; }
  37. public string UPDATE_NAME { get; set; }
  38. public DateTime UPDATE_TIME { get; set; }
  39. public int DATA_VERSION { get; set; }
  40. public string REMARKS1 { get; set; }
  41. public string REMARKS2 { get; set; }
  42. public string REMARKS3 { get; set; }
  43. public string REMARKS4 { get; set; }
  44. public string REMARKS5 { get; set; }
  45. }
  46. }