|
|
@@ -841,13 +841,13 @@
|
|
|
from promoter_bind_channel_date
|
|
|
where media_id = 1
|
|
|
<if test="start != null and start != ''">
|
|
|
- and t1.stat_date >= #{start}
|
|
|
+ and stat_date >= #{start}
|
|
|
</if>
|
|
|
<if test="end != null and end != ''">
|
|
|
- and t1.stat_date <= #{end}
|
|
|
+ and stat_date <= #{end}
|
|
|
</if>
|
|
|
<if test="collectSampleId != null and collectSampleId != ''">
|
|
|
- and t1.user_id = #{collectSampleId}
|
|
|
+ and user_id = #{collectSampleId}
|
|
|
</if>
|
|
|
) t1
|
|
|
left join (select *
|