| | |
| | | package com.ycl.platform.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.platform.domain.entity.CheckIndexCar; |
| | | import com.ycl.platform.domain.entity.CheckIndexFace; |
| | | import com.ycl.platform.domain.result.HK.SnapshotDataMonitorResult; |
| | | |
| | |
| | | * @author ruoyi |
| | | * @date 2024-04-29 |
| | | */ |
| | | public interface ICheckIndexFaceService |
| | | public interface ICheckIndexFaceService extends IService<CheckIndexFace> |
| | | { |
| | | /** |
| | | * 查询人脸指标概率数据 |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deleteCheckIndexFaceById(Long id); |
| | | |
| | | /** |
| | | * 计算人脸点位在线率 |
| | | * @param list |
| | | */ |
| | | void siteOnline(List<SnapshotDataMonitorResult> list); |
| | | |
| | | } |