demand: 查询海运网点列表接口能根据名称过滤

committer: heyu
This commit is contained in:
aike 2025-04-29 09:14:46 +08:00
parent 3c7c818a7c
commit eb05fe19bd

View File

@ -312,6 +312,8 @@
<where>
del_flag='0'
<if test="status != null and status != ''"> and status like concat('%', #{status}, '%')</if>
<if test="siteName != null and siteName != ''"> and site_name like concat('%', #{siteName}, '%')</if>
<if test="siteNameEn != null and siteNameEn != ''"> and site_name_en like concat('%', #{siteNameEn}, '%')</if>
<if test="siteCode != null and siteCode != ''">and site_code=#{siteCode}</if>
<if test="transTypeId != null and transTypeId != ''">and trans_type_id like concat('%', #{transTypeId}, '%')</if>
</where>