Browse Source

添加节点类型、标签等

master
陈裕财 4 years ago
parent
commit
9baab2d1b1
  1. 10
      xm-core/src/main/resources/mybatis/mapper/xm/core/dao/XmTaskMapper.xml

10
xm-core/src/main/resources/mybatis/mapper/xm/core/dao/XmTaskMapper.xml

@ -103,7 +103,7 @@
( #{item})
</foreach>
</update>
<update id="batchRelTasksWithPhase" parameterType="HashMap">
<update id="batchRelTasksWithMenu" parameterType="HashMap">
update xm_task res set res.menu_id=${menuId},res.menu_name =${menuName} res.product_id=#{productId}
where res.id in
<foreach collection="taskIds" item="item" index="index" open="(" separator="," close=")" >
@ -112,6 +112,14 @@
and res.ntype='0'
</update>
<update id="batchRelTasksWithPhase" parameterType="com.xm.core.vo.BatchRelTasksWithPhase">
update xm_task res set res.project_phase_id=${projectPhaseId}
where res.id in
<foreach collection="taskIds" item="item" index="index" open="(" separator="," close=")" >
( #{item})
</foreach>
and res.ntype='0'
</update>
<!-- 插入流程审批表数据 -->
<insert id="insertProcessApprova"
parameterType="HashMap"

Loading…
Cancel
Save