Commit ba66b9a7 authored by tianyiming's avatar tianyiming

转办修改业务nextTaskId

parent bd1f2e52
...@@ -30,6 +30,6 @@ public interface CommonMapper extends BaseMapper<EquipmentCategory> { ...@@ -30,6 +30,6 @@ public interface CommonMapper extends BaseMapper<EquipmentCategory> {
String selectBusinessData(String tableName, String instanceId); String selectBusinessData(String tableName, String instanceId);
void updateBusinessData(String tableName,String assignee, String transferToUserIds, String instanceId); void updateBusinessData(String tableName,String assignee, String transferToUserIds, String instanceId,String nextTaskId);
} }
...@@ -76,7 +76,8 @@ ...@@ -76,7 +76,8 @@
<update id="updateBusinessData"> <update id="updateBusinessData">
update ${tableName} update ${tableName}
set transfer_to_user_ids = #{transferToUserIds}, set transfer_to_user_ids = #{transferToUserIds},
next_execute_user_ids = #{assignee} next_execute_user_ids = #{assignee},
next_task_id = #{nextTaskId}
where instance_id = #{instanceId} where instance_id = #{instanceId}
</update> </update>
</mapper> </mapper>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment