| | |
| | | package com.ycl.platform.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.platform.domain.entity.CheckIndexFace; |
| | | import com.ycl.platform.domain.entity.CheckIndexVideo; |
| | | import com.ycl.platform.domain.query.DashboardQuery; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | public int deleteCheckIndexVideoByIds(Long[] ids); |
| | | |
| | | List<CheckIndexVideo> selectToday(String date); |
| | | |
| | | /** |
| | | * 大屏人脸考核 |
| | | * @param dashboardQuery 查询条件 |
| | | * @return 数据 |
| | | */ |
| | | CheckIndexVideo dashboard(DashboardQuery dashboardQuery); |
| | | |
| | | /** |
| | | * 查询视频指标概率数据带上部门名称 |
| | | * @return 视频指标概率数据集合 |
| | | */ |
| | | List<CheckIndexVideo> selectAndDeptName(); |
| | | } |