| | |
| | | left join (select user_id, count(1) as num from tb_order where status = 6 group by user_id) buy on tbu.id = buy.user_id |
| | | left join (select c.user_id,count(o.company_id) as num from tb_company c left join tb_order o on c.id=o.company_id and o.status=6 group by c.user_id) sell on tbu.id = sell.user_id |
| | | where tbu.is_delete =0 |
| | | <if test="null != dto.username and dto.username != '' "> |
| | | and tbu.user_name like concat('%',#{dto.username},'%') |
| | | and tbu.status != 3 |
| | | <if test="null != dto.userName and dto.userName != '' "> |
| | | and tbu.user_name like concat('%',#{dto.userName},'%') |
| | | </if> |
| | | <if test="null != dto.phone and dto.phone != '' "> |
| | | and tbu.phone like concat('%',#{dto.phone},'%') |