Compare commits

..

2 Commits

1 changed files with 4 additions and 4 deletions

View File

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