AddtionalOperation.php 816 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. /**
  3. * 工序信息
  4. * @author auto create
  5. */
  6. class AddtionalOperation
  7. {
  8. /**
  9. * 上下文
  10. **/
  11. public $context;
  12. /**
  13. * 设备ID列表
  14. **/
  15. public $device_ids;
  16. /**
  17. * 排位布局版本
  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_end_time;
  40. /**
  41. * 工序执行开始时间
  42. **/
  43. public $process_start_time;
  44. /**
  45. * 工序能力类型
  46. **/
  47. public $process_type_code;
  48. /**
  49. * 工段
  50. **/
  51. public $section_code;
  52. /**
  53. * 执行人
  54. **/
  55. public $work_nos;
  56. /**
  57. * 工位
  58. **/
  59. public $workstation_code;
  60. }
  61. ?>