|
@@ -4,6 +4,7 @@ package cn.com.taiji.video.cotroller;
|
|
|
import cn.com.taiji.video.model.VideoAnalysisLineDTO;
|
|
|
import cn.com.taiji.video.model.VideoAnalysisPieDTO;
|
|
|
import cn.com.taiji.video.model.VideoDTO;
|
|
|
+import cn.com.taiji.video.model.VideoRecord;
|
|
|
import cn.com.taiji.video.service.IVideoUrlService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
@@ -32,6 +33,11 @@ public class VideoUrlController {
|
|
|
return urlService.queryVideoList();
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("record/list")
|
|
|
+ public List<VideoRecord> queryVideoRecord() {
|
|
|
+ return urlService.queryVideoRecord();
|
|
|
+ }
|
|
|
+
|
|
|
@GetMapping("analysis/test")
|
|
|
public void queryTestPie(Integer type, String startTime, String endTime) {
|
|
|
LocalDate startDate = LocalDate.parse(startTime);
|
|
@@ -39,6 +45,11 @@ public class VideoUrlController {
|
|
|
urlService.queryTestPie(type, startDate, endDate);
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("analysis/all")
|
|
|
+ public Integer queryPieRecordAll() {
|
|
|
+ return urlService.queryPieRecordAll();
|
|
|
+ }
|
|
|
+
|
|
|
@GetMapping("analysis/pie")
|
|
|
public VideoAnalysisPieDTO queryPieRecord(Integer type) {
|
|
|
return urlService.queryPieRecord(type);
|