调整企业列表搜索

This commit is contained in:
2024-11-28 01:51:30 +08:00
parent cf4f01046a
commit 63641bbf4c

View File

@@ -51,7 +51,13 @@
AND a.city = #{param.city}
</if>
<if test="param.province != null">
AND a.region = #{param.province}
AND a.province = #{param.province}
</if>
<if test="param.city != null">
AND a.city = #{param.city}
</if>
<if test="param.region != null">
AND a.region = #{param.region}
</if>
<if test="param.zipCode != null">
AND a.zip_code = #{param.zipCode}