Commit 7fd1578e authored by zhangfeng's avatar zhangfeng

bugfix-180: 手机号码搜索后点击会员名称显示异常

parent 95bc56d1
......@@ -22,7 +22,7 @@
left join member_user_score mus on mus.member_id = mu.id
left join ecw_region re on re.id = mu.country
left join ecw_region rea on rea.id = mu.city
where 1 = 1
where 1 = 1 and mu.deleted = 0
<include refid="scoreCondition"/>
order by mu.id
limit #{start}, #{size}
......@@ -33,7 +33,7 @@
from member_user mu
left join member_user_score mus on mus.member_id = mu.id
left join ecw_region re on re.id = mu.country
where 1 = 1
where 1 = 1 and mu.deleted = 0
<include refid="scoreCondition"/>
</select>
<select id="getByMemberId"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment