WmsTaskResult.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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.WmsTask
  7. {
  8. public class WmsTaskResult
  9. {
  10. public int TASK_ID { get; set; }
  11. public string NEWID { get; set; }
  12. public string WAREHOUSE_CODE { get; set; }
  13. public string WAREHOUSE_NAME { get; set; }
  14. public int TASK_NO { get; set; }
  15. public int CMD_NO { get; set; }
  16. public string TRAY_CODE { get; set; }
  17. public string PALLET_CODE { get; set; }
  18. public int TRAY_LOADED_TYPE { get; set; }
  19. public string TRAY_LOADED_TYPE_NAME { get; set; }
  20. public string SLOC_CODE { get; set; }
  21. public string ELOC_CODE { get; set; }
  22. public string CLOC_CODE { get; set; }
  23. public int TASK_TYPE { get; set; }
  24. public string TASK_TYPE_NAME { get; set; }
  25. public string TASK_MSG { get; set; }
  26. public int ERR_FLAG { get; set; }
  27. public string ERR_FLAG_NAME { get; set; }
  28. public int TASK_PRIORITY { get; set; }
  29. public int TASK_STATUS { get; set; }
  30. public string TASK_STATUS_NAME { get; set; }
  31. public string SBIN_CODE { get; set; }
  32. public string EBIN_CODE { get; set; }
  33. public string ROUTE_CODE { get; set; }
  34. public int CREATE_BY { get; set; }
  35. public string CREATE_NAME { get; set; }
  36. public DateTime CREATE_TIME { get; set; }
  37. public int UPDATE_BY { get; set; }
  38. public string UPDATE_NAME { get; set; }
  39. public DateTime UPDATE_TIME { get; set; }
  40. public int DATA_VERSION { get; set; }
  41. public string REMARKS1 { get; set; }
  42. public string REMARKS2 { get; set; }
  43. public string REMARKS3 { get; set; }
  44. public string REMARKS4 { get; set; }
  45. public string REMARKS5 { get; set; }
  46. }
  47. }