PerformOperationReq.php 847 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. /**
  3. * 工序请求
  4. * @author auto create
  5. */
  6. class PerformOperationReq
  7. {
  8. /**
  9. * 上下文
  10. **/
  11. public $context;
  12. /**
  13. * 设备id
  14. **/
  15. public $device_ids;
  16. /**
  17. * flow版本
  18. **/
  19. public $flow_version;
  20. /**
  21. * 工序类型
  22. **/
  23. public $operation_type;
  24. /**
  25. * 工序唯一id
  26. **/
  27. public $operation_uid;
  28. /**
  29. * 执行状态
  30. **/
  31. public $perform_status;
  32. /**
  33. * 优先级
  34. **/
  35. public $priority;
  36. /**
  37. * 执行耗时
  38. **/
  39. public $process_cost_time;
  40. /**
  41. * 执行完成时间
  42. **/
  43. public $process_end_time;
  44. /**
  45. * 执行开始时间
  46. **/
  47. public $process_start_time;
  48. /**
  49. * 工序类型码
  50. **/
  51. public $process_type_code;
  52. /**
  53. * 工段
  54. **/
  55. public $section_code;
  56. /**
  57. * 工号
  58. **/
  59. public $work_nos;
  60. /**
  61. * 工作站
  62. **/
  63. public $workstation_code;
  64. }
  65. ?>