WcsCrnCmdResult.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 WcsCrnCmdResult
  9. {
  10. public int CRN_CMD_ID { get; set; }
  11. public string NEWID { get; set; }
  12. public int TASK_NO { get; set; }
  13. public int CMD_NO { get; set; }
  14. public string TRAY_CODE { get; set; }
  15. public string PALLET_CODE { get; set; }
  16. public int TRAY_STATUS { get; set; }
  17. public string TRAY_STATUS_NAME { get; set; }
  18. public string CRN_DEV_NO { get; set; }
  19. public string CRN_FORK_DEV_NO { get; set; }
  20. public string SBIN_NO { get; set; }
  21. public int SBIN_ROW { get; set; }
  22. public int SBIN_COL { get; set; }
  23. public int SBIN_LAYER { get; set; }
  24. public string S_EXTENSION_GROUP { get; set; }
  25. public int S_EXTENSION_IDX { get; set; }
  26. public string EBIN_NO { get; set; }
  27. public int EBIN_ROW { get; set; }
  28. public int EBIN_COL { get; set; }
  29. public int EBIN_LAYER { get; set; }
  30. public string E_EXTENSION_GROUP { get; set; }
  31. public int E_EXTENSION_IDX { get; set; }
  32. public string CMD_TYPE { get; set; }
  33. public string CMD_TYPE_NAME { get; set; }
  34. public int ACTIVE_TYPE { get; set; }
  35. public string ACTIVE_TYPE_NAME { get; set; }
  36. public int CMD_PRIORITY { get; set; }
  37. public int CMD_STATUS { get; set; }
  38. public string CMD_STATUS_NAME { get; set; }
  39. public string CMD_LOG { get; set; }
  40. public int ERR_FLAG { get; set; }
  41. public string ERR_FLAG_NAME { get; set; }
  42. public string ERR_LOG { get; set; }
  43. public DateTime EXECUTE_TIME { get; set; }
  44. public DateTime FINISH_TIME { get; set; }
  45. public int CREATE_BY { get; set; }
  46. public string CREATE_NAME { get; set; }
  47. public DateTime CREATE_TIME { get; set; }
  48. public int UPDATE_BY { get; set; }
  49. public string UPDATE_NAME { get; set; }
  50. public DateTime UPDATE_TIME { get; set; }
  51. public int DATA_VERSION { get; set; }
  52. public string REMARKS1 { get; set; }
  53. public string REMARKS2 { get; set; }
  54. public string REMARKS3 { get; set; }
  55. public string REMARKS4 { get; set; }
  56. public string REMARKS5 { get; set; }
  57. }
  58. }