@@ -87,7 +87,7 @@ public class UpdateExecuteTaskStatusService { | |||
inspection.setUpdateUser(userId); | |||
inspection.setUpdateTime(DateUtils.now()); | |||
inspection.setExecutionStartTime(DateUtils.now()); | |||
inspectionMapper.update(inspection); | |||
inspectionMapper.updateStatus(inspection); | |||
} | |||
/** |
@@ -194,6 +194,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | |||
<if test="status != null"> status = #{status}, </if> | |||
<if test="updateUser != null and updateUser != ''"> update_user = #{updateUser},</if> | |||
<if test="updateTime != null"> update_time = #{updateTime},</if> | |||
<if test="executionStartTime != null"> execution_start_time = #{executionStartTime},</if> | |||
</trim> | |||
where id = #{id} | |||
</update> |