OperationDefDto.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?php
  2. /**
  3. * 工序定义图
  4. * @author auto create
  5. */
  6. class OperationDefDto
  7. {
  8. /**
  9. * 适用尺码(即将废弃,后续迁移到applicable_size_list)
  10. **/
  11. public $applicable_size_code;
  12. /**
  13. * 适用尺码列表
  14. **/
  15. public $applicable_size_list;
  16. /**
  17. * 是否需要调度
  18. **/
  19. public $auto_schedule;
  20. /**
  21. * 业务编码
  22. **/
  23. public $biz_code;
  24. /**
  25. * 工艺内容ID(bop)
  26. **/
  27. public $biz_id_dtech_item;
  28. /**
  29. * 业务来源
  30. **/
  31. public $biz_source;
  32. /**
  33. * 进入条件:ANY_MATCH/ALL_MATCH
  34. **/
  35. public $enter_condition;
  36. /**
  37. * 执行系统
  38. **/
  39. public $exec_system;
  40. /**
  41. * PaaSflowID(只用于返回,保存会自增)
  42. **/
  43. public $flow_id;
  44. /**
  45. * 工序定义版本
  46. **/
  47. public $flow_version;
  48. /**
  49. * 工艺内容版本(bop)
  50. **/
  51. public $item_version;
  52. /**
  53. * 工序名称
  54. **/
  55. public $name;
  56. /**
  57. * 后续工序外部ID列表
  58. **/
  59. public $next_operation_external_ids;
  60. /**
  61. * 后续工序唯一ID列表
  62. **/
  63. public $next_operation_uids;
  64. /**
  65. * 工序执行器分配
  66. **/
  67. public $operation_executor_assigns;
  68. /**
  69. * 工序外部ID
  70. **/
  71. public $operation_external_id;
  72. /**
  73. * 工序类型:ASSIST/QUALITY_INSPECT/TECHNOLOGY
  74. **/
  75. public $operation_type;
  76. /**
  77. * 工序唯一ID
  78. **/
  79. public $operation_uid;
  80. /**
  81. * 工序编码(同订单内唯一)
  82. **/
  83. public $process_code;
  84. /**
  85. * 工序能力类型:SJ/PP/TR等
  86. **/
  87. public $process_type_code;
  88. /**
  89. * 工段CODE:F-SL/C..
  90. **/
  91. public $section_code;
  92. /**
  93. * 工段名称:缝制-碎料/裁床..
  94. **/
  95. public $section_name;
  96. /**
  97. * 是否跳过(不生产)
  98. **/
  99. public $skip;
  100. /**
  101. * 标准工时/秒
  102. **/
  103. public $std_cost;
  104. /**
  105. * 分配单元列表
  106. **/
  107. public $work_units;
  108. }
  109. ?>