fix(CuMemberEmptyMapper): 修复空单注册-注册列表会员编号、会员姓名、联系方式搜索报错的bug

This commit is contained in:
woody 2025-05-15 14:05:11 +08:00 committed by cabbage
parent e53ec282eb
commit bf218e5cb8
1 changed files with 3 additions and 3 deletions

View File

@ -116,13 +116,13 @@
and cme.business_code like #{param.businessCode} || '%'
</if>
<if test="param.memberCode != null and param.memberCode != ''">
and cme.member_code like #{param.memberCode} || '%'
and cmed.member_code like #{param.memberCode} || '%'
</if>
<if test="param.memberName != null and param.memberName != ''">
and cme.member_name like #{param.memberName} || '%'
and cmed.member_name like #{param.memberName} || '%'
</if>
<if test="param.phone != null and param.phone != ''">
and cme.phone like #{param.phone} || '%'
and cmed.phone like #{param.phone} || '%'
</if>
<if test="param.pkRegisterGrade != null">
and cmed.pk_register_grade = #{param.pkRegisterGrade}