bug修改。

This commit is contained in:
Renpc-kilig 2021-05-15 17:21:54 +08:00
parent 82620ebe6c
commit b8b32bd6b3

View File

@ -153,13 +153,17 @@
WHERE WHERE
t1.is_delete = 0 t1.is_delete = 0
<if test="examCheckId != null and examCheckId != ''"> <if test="examCheckId != null and examCheckId != ''">
AND AND t1.exam_check_id = #{examCheckId}
t1.exam_check_id = #{examCheckId} </if>
<if test="workTypeId != null and workTypeId != ''">
AND t1.work_type_id = #{workTypeId}
</if>
<if test="orgId != null and orgId != ''">
AND t1.org_id = #{orgId}
</if>
<if test="planId != null and planId != ''">
AND t1.plan_id = #{planId}
</if> </if>
<if test="planId != null and planId != ''">
AND
t1.plan_id = #{planId}
</if>
</select> </select>
<!-- 详情 --> <!-- 详情 -->