bug修改

version1
anthonyywj2 3 years ago
parent 8fb9e05c83
commit 5a36d6cf7a

@ -19,8 +19,8 @@
<if test="scheduleType != '' and scheduleType!=null"> <if test="scheduleType != '' and scheduleType!=null">
and scheduleType = #{scheduleType} and scheduleType = #{scheduleType}
</if> </if>
<if test="taskId != '' and taskId!=null"> <if test="taskId != null and taskId != ''">
and taskId = #{taskId} AND taskId LIKE concat('%',#{taskId},'%')
</if> </if>
</where> </where>

@ -12,7 +12,7 @@
and id = #{id} and id = #{id}
</if> </if>
<if test="taskId != null and taskId != ''"> <if test="taskId != null and taskId != ''">
and taskId = #{taskId} AND taskId LIKE concat('%',#{taskId},'%')
</if> </if>
<if test="status != null"> <if test="status != null">
and status = #{status} and status = #{status}

Loading…
Cancel
Save