WcsTranCmdResult.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 WcsTranCmdResult
  8. {
  9. public int TRAN_CMD_ID { get; set; }
  10. public string NEWID { get; set; }
  11. public int TASK_NO { get; set; }
  12. public int CMD_NO { get; set; }
  13. public string TRAY_CODE { get; set; }
  14. public string PALLET_CODE { get; set; }
  15. public int TRAY_STATUS { get; set; }
  16. public string TRAY_STATUS_NAME { get; set; }
  17. public string TRAN_DEV_NO { get; set; }
  18. public string SLOC_NO { get; set; }
  19. public string SPLC_NO { get; set; }
  20. public string ELOC_NO { get; set; }
  21. public string EPLC_NO { get; set; }
  22. public string CMD_TYPE { get; set; }
  23. public string CMD_TYPE_NAME { get; set; }
  24. public int ACTIVE_TYPE { get; set; }
  25. public string ACTIVE_TYPE_NAME { get; set; }
  26. public int CMD_PRIORITY { get; set; }
  27. public int CMD_STATUS { get; set; }
  28. public string CMD_STATUS_NAME { get; set; }
  29. public string CMD_LOG { get; set; }
  30. public int ERR_FLAG { get; set; }
  31. public string ERR_FLAG_NAME { get; set; }
  32. public string ERR_LOG { get; set; }
  33. public DateTime EXECUTE_TIME { get; set; }
  34. public DateTime FINISH_TIME { get; set; }
  35. public int CREATE_BY { get; set; }
  36. public string CREATE_NAME { get; set; }
  37. public DateTime CREATE_TIME { get; set; }
  38. public int UPDATE_BY { get; set; }
  39. public string UPDATE_NAME { get; set; }
  40. public DateTime UPDATE_TIME { get; set; }
  41. public int DATA_VERSION { get; set; }
  42. public string REMARKS1 { get; set; }
  43. public string REMARKS2 { get; set; }
  44. public string REMARKS3 { get; set; }
  45. public string REMARKS4 { get; set; }
  46. public string REMARKS5 { get; set; }
  47. }
  48. }