Compare commits

...

2 Commits

Author SHA1 Message Date
tangqian cedb9985ad Merge branch 'feature/mall_product' into test 2023-06-08 15:59:13 +08:00
tangqian acbce105f1 fix: 修改推广员 新增一个注册来源 2023-06-08 15:58:57 +08:00
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
-->
<select id="findListPage" resultType="cn.iocoder.yudao.module.member.controller.admin.promoter.vo.PromoterRespVO">
select a.id,a.user_id,a.dept_id,b.nickname,b.status,b.mobile,c.parent_organization_name as 'orgName' from member_promoter a
select a.id,a.user_id,a.dept_id,b.nickname,b.status,b.mobile,c.parent_organization_name as 'orgName',a.source_type from member_promoter a
left join member_user b on a.user_id = b.id
left join system_dept c on c.id=a.dept_id
<where>
@ -27,7 +27,7 @@
and b.mobile like CONCAT('%',#{data.mobile},'%')
</if>
<if test="data.sourceType!=null">
and b.source_type =#{data.sourceType}
and a.source_type =#{data.sourceType}
</if>
</where>
</select>