|
@@ -364,9 +364,10 @@
|
|
|
<select id="getVideoPoolPlatformCrawlerCount" resultType="java.lang.Long">
|
|
|
select count(1)
|
|
|
from crawler_content cc
|
|
|
+ join crawler_plan_result_rel cprr on cc.channel_content_id = cprr.channel_source_id
|
|
|
join crawler_content_video_pool_relation ccvpr on cc.channel_content_id = ccvpr.channel_content_id
|
|
|
where ccvpr.platform = #{platform}
|
|
|
- and cc.crawler_timestamp between #{start} and #{end}
|
|
|
+ and cprr.create_timestamp between #{start} and #{end}
|
|
|
</select>
|
|
|
|
|
|
<select id="getVideoPoolPlatformProduceCount" resultType="java.lang.Long">
|