From eea5bc9be7deb06106d6274abeb29ebe4b83af44 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期二, 30 四月 2024 13:40:35 +0800 Subject: [PATCH] 考核结果指标详情页面 --- ycl-server/src/main/java/com/ycl/platform/service/IYwThresholdService.java | 77 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 77 insertions(+), 0 deletions(-) diff --git a/ycl-server/src/main/java/com/ycl/platform/service/IYwThresholdService.java b/ycl-server/src/main/java/com/ycl/platform/service/IYwThresholdService.java index db7356a..019c780 100644 --- a/ycl-server/src/main/java/com/ycl/platform/service/IYwThresholdService.java +++ b/ycl-server/src/main/java/com/ycl/platform/service/IYwThresholdService.java @@ -1,7 +1,15 @@ package com.ycl.platform.service; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.ycl.platform.domain.dto.CarDTO; +import com.ycl.platform.domain.dto.FaceDTO; +import com.ycl.platform.domain.dto.VideoDTO; import com.ycl.platform.domain.entity.YwThreshold; +import com.ycl.platform.domain.form.CarThresholdForm; +import com.ycl.platform.domain.form.FaceThresholdForm; +import com.ycl.platform.domain.form.VideoThresholdForm; +import com.ycl.platform.mapper.YwThresholdMapper; import java.util.List; @@ -59,4 +67,73 @@ * @return 缁撴灉 */ public int deleteYwThresholdById(Integer id); + + /** + * 淇敼浜鸿劯闃堝�� + * + * @param form + * @return + */ + int editFace(FaceThresholdForm form); + + /** + * 淇敼杞﹁締闃堝�� + * + * @param form + * @return + */ + int editCar(CarThresholdForm form); + + /** + * 淇敼瑙嗛闃堝�� + * + * @param form + * @return + */ + int editVideo(VideoThresholdForm form); + + /** + * 妫�鏌ヤ汉鑴告暟鎹槸鍚﹁鐢熸垚宸ュ崟 + * + * @param faceList 浜鸿劯鏁版嵁 + * @return 鏄惁鐢熸垚宸ュ崟 + */ + Boolean checkFace(List<FaceDTO> faceList); + + /** + * 妫�鏌ヨ溅杈嗘暟鎹槸鍚﹁鐢熸垚宸ュ崟 + * + * @param carList 杞﹁締鏁版嵁 + * @return 鏄惁鐢熸垚宸ュ崟 + */ + Boolean checkCar(List<CarDTO> carList); + + /** + * 妫�鏌ヨ棰戞暟鎹槸鍚﹁鐢熸垚宸ュ崟 + * + * @param videoList + * @return 鏄惁鐢熸垚宸ュ崟 + */ + Boolean checkVideo(List<VideoDTO> videoList); + + /** + * 鑾峰彇浜鸿劯閰嶇疆 + * @param id + * @return + */ + FaceThresholdForm getFace(Integer id); + + /** + * 鑾峰彇杞﹁締閰嶇疆 + * @param id + * @return + */ + CarThresholdForm getCar(Integer id); + + /** + * 鑾峰彇瑙嗛閰嶇疆 + * @param id + * @return + */ + VideoThresholdForm getVideo(Integer id); } -- Gitblit v1.8.0