|
@@ -198,7 +198,7 @@
|
|
|
</select>
|
|
|
|
|
|
<select id="itemDetail" resultType="com.alibaba.fastjson.JSONObject">
|
|
|
- select *
|
|
|
+ select t.*,tt.user_name
|
|
|
from (
|
|
|
select
|
|
|
promoter_nick_name as 'promoterNickName',
|
|
@@ -229,7 +229,8 @@
|
|
|
<if test="promoterNickName != null and promoterNickName != ''">
|
|
|
and promoter_nick_name like concat(concat('%',#{promoterNickName}),'%')
|
|
|
</if>
|
|
|
- group by promoter_id) t
|
|
|
+ group by promoter_id) t left join kuaishou_promoter tt
|
|
|
+ on t.promoterId = tt.promoter_id
|
|
|
order by t.orderNum desc
|
|
|
</select>
|
|
|
<select id="itemServiceCharge" resultType="com.alibaba.fastjson.JSONObject">
|