Compare commits

..

No commits in common. "44ab59f3753e60c59f4c46314338ff5e94c62be9" and "ebfcec4419ff6c8ef07f25155d754ee4496bb6a2" have entirely different histories.

1 changed files with 4 additions and 4 deletions

View File

@ -654,11 +654,11 @@
WHERE kp.delete_enum = 'FALSE'
AND kp.apply_status IN (2, 4, 5)
<if test="params.corpinfoId != null">
AND kp.corpinfo_id = #{params.corpinfoId}
<if test="corpinfoId != null">
AND kp.corpinfo_id = #{corpinfoId}
</if>
<if test="params.portArea != null">
AND cp.port_area = #{params.portArea}
<if test="portArea != null">
AND cp.port_area = #{portArea}
</if>
ORDER BY kp.apply_status ASC, kp.create_time DESC
</select>