This commit is contained in:
zfh 2025-02-20 22:42:40 +08:00
parent 48d2534123
commit a15db088a1
1 changed files with 1 additions and 1 deletions

View File

@ -24,6 +24,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</insert>
<update id="updateSysWorkflowRecord">
update sys_workflow_record set workflow_status = #{workflowStatus} where task_id = #{taskId}
<if test="taskType != null"> and task_type = #{taskType},</if>
<if test="taskType != null"> and task_type = #{taskType}</if>
</update>
</mapper>