bug修改

version1
anthonyywj2 3 years ago
parent 8fb9e05c83
commit 5a36d6cf7a

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

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

Loading…
Cancel
Save