|
@@ -127,8 +127,11 @@
|
|
|
</where>
|
|
|
</select>
|
|
|
|
|
|
- <select id="getVOById" parameterType="java.lang.String" resultType="com.platform.dao.vo.query.workflow.WorkflowTaskBomVO">
|
|
|
- select bom.*,task.link_type,task.form_data_id from t_workflow_task_bom bom
|
|
|
- join t_workflow_task task on task.id = bom.task_id where bom.id = #{id}
|
|
|
+ <select id="getVOById" parameterType="java.lang.String"
|
|
|
+ resultType="com.platform.dao.vo.query.workflow.WorkflowTaskBomVO">
|
|
|
+ select bom.*,task.link_type,task.form_data_id,task.front_id,flow.json as flowJson from t_workflow_task_bom bom
|
|
|
+ join t_workflow_task task on task.id = bom.task_id
|
|
|
+ join t_workflow flow on flow.id = task.flow_id
|
|
|
+ where bom.id = #{id}
|
|
|
</select>
|
|
|
</mapper>
|