OperationReq.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. /**
  3. * 工序执行记录
  4. * @author auto create
  5. */
  6. class OperationReq
  7. {
  8. /**
  9. * 执行上下文
  10. **/
  11. public $context;
  12. /**
  13. * 设备ID列表
  14. **/
  15. public $device_ids;
  16. /**
  17. * 实体ID
  18. **/
  19. public $entity_id;
  20. /**
  21. * 实体类型
  22. **/
  23. public $entity_type;
  24. /**
  25. * 排位布局版本
  26. **/
  27. public $flow_version;
  28. /**
  29. * 工序类型
  30. **/
  31. public $operation_type;
  32. /**
  33. * 工序ID
  34. **/
  35. public $operation_uid;
  36. /**
  37. * 订单ID
  38. **/
  39. public $order_id;
  40. /**
  41. * 执行状态
  42. **/
  43. public $perform_status;
  44. /**
  45. * 执行类型
  46. **/
  47. public $perform_type;
  48. /**
  49. * 优先级
  50. **/
  51. public $priority;
  52. /**
  53. * 工序执行耗时,单位秒
  54. **/
  55. public $process_cost_time;
  56. /**
  57. * 执行完成时间
  58. **/
  59. public $process_end_time;
  60. /**
  61. * 执行开始时间
  62. **/
  63. public $process_start_time;
  64. /**
  65. * 工序能力类型
  66. **/
  67. public $process_type_code;
  68. /**
  69. * 工段
  70. **/
  71. public $section_code;
  72. /**
  73. * 来源ID
  74. **/
  75. public $source_id;
  76. /**
  77. * 来源类型
  78. **/
  79. public $source_type;
  80. /**
  81. * 执行人工号
  82. **/
  83. public $work_nos;
  84. /**
  85. * 执行工位
  86. **/
  87. public $workstation_code;
  88. }
  89. ?>