Merge pull request 'demand: 查询海运网点列表接口能根据名称过滤' (#7) from develop into master

Reviewed-on: http://git.xdadan.loc/tanex/emis-service/pulls/7
This commit is contained in:
smshen 2025-04-29 09:26:53 +08:00
commit 193f57f8f4

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>