1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.ycl.task;
|
|
| import lombok.extern.slf4j.Slf4j;
| import org.springframework.beans.factory.annotation.Autowired;
| import org.springframework.data.mongodb.core.MongoTemplate;
| import org.springframework.stereotype.Component;
|
| /**
| * 视频计算考核指标任务
| * 凌晨执行计算昨天数据
| * */
| @Slf4j
| @Component("videoTask")
| public class VideoTask {
| @Autowired
| private MongoTemplate mongoTemplate;
| }
|
|