给供应商查询增加联系人的参数

This commit is contained in:
jishenghua
2025-04-13 17:04:28 +08:00
parent 29ac8d4e29
commit c5324f4ef1
4 changed files with 9 additions and 3 deletions

View File

@@ -12,6 +12,10 @@
<if test="type != null and type !=''">
and type=#{type}
</if>
<if test="contacts != null and contacts !=''">
<bind name="bindContacts" value="'%'+contacts+'%'"/>
and contacts like #{bindContacts}
</if>
<if test="phonenum != null and phonenum !=''">
<bind name="bindPhoneNum" value="'%'+phonenum+'%'"/>
and phone_num like #{bindPhoneNum}