Browse Source

视频分析相关接口优化

yangyue 1 year ago
parent
commit
8f9918bb7e

+ 3 - 3
video/src/main/java/cn/com/taiji/video/model/VideoAnalysisLineDTO.java

@@ -14,10 +14,10 @@ public class VideoAnalysisLineDTO {
 
     private String time;
 
-    private Integer face;
+    private Double face;
 
-    private Integer car;
+    private Double car;
 
-    private Integer body;
+    private Double body;
 
 }

+ 6 - 6
video/src/main/resources/mapper/HtDpVideoAnalysisMapper.xml

@@ -20,15 +20,15 @@
         SELECT
         <if test="year != null and year != ''">
             t.`year_month` as time,
-            (select sum(pic_analysis_total) from `ht_dp_video_analysis` t1 where t1.`year_month` = t.`year_month` and t1.type = 1) as face,
-            (select sum(pic_analysis_total) from `ht_dp_video_analysis` t1 where t1.`year_month` = t.`year_month` and t1.type = 2) as car,
-            (select sum(pic_analysis_total) from `ht_dp_video_analysis` t1 where t1.`year_month` = t.`year_month` and t1.type = 3) as body
+            (select sum(pic_analysis_total) / 10000 from `ht_dp_video_analysis` t1 where t1.`year_month` = t.`year_month` and t1.type = 1) as face,
+            (select sum(pic_analysis_total) / 10000 from `ht_dp_video_analysis` t1 where t1.`year_month` = t.`year_month` and t1.type = 2) as car,
+            (select sum(pic_analysis_total) / 10000 from `ht_dp_video_analysis` t1 where t1.`year_month` = t.`year_month` and t1.type = 3) as body
         </if>
         <if test="yearMonth != null and yearMonth != ''">
             t.stat_date as time,
-            (select sum(pic_analysis_total) from `ht_dp_video_analysis` t1 where t1.stat_date = t.stat_date and t1.type = 1) as face,
-            (select sum(pic_analysis_total) from `ht_dp_video_analysis` t1 where t1.stat_date = t.stat_date and t1.type = 2) as car,
-            (select sum(pic_analysis_total) from `ht_dp_video_analysis` t1 where t1.stat_date = t.stat_date and t1.type = 3) as body
+            (select sum(pic_analysis_total) / 10000 from `ht_dp_video_analysis` t1 where t1.stat_date = t.stat_date and t1.type = 1) as face,
+            (select sum(pic_analysis_total) / 10000 from `ht_dp_video_analysis` t1 where t1.stat_date = t.stat_date and t1.type = 2) as car,
+            (select sum(pic_analysis_total) / 10000 from `ht_dp_video_analysis` t1 where t1.stat_date = t.stat_date and t1.type = 3) as body
         </if>
         FROM `ht_dp_video_analysis` t
         where