| | |
| | | package com.ycl.platform.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ycl.platform.domain.entity.CheckIndexFace; |
| | | import com.ycl.platform.domain.entity.CheckIndexVideo; |
| | | import com.ycl.platform.mapper.CheckIndexFaceMapper; |
| | | import com.ycl.platform.domain.query.DashboardQuery; |
| | | import com.ycl.platform.domain.query.DataCenterQuery; |
| | | import com.ycl.platform.mapper.CheckIndexVideoMapper; |
| | | import com.ycl.platform.service.DataCenterService; |
| | | import com.ycl.platform.service.ICheckIndexVideoService; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import utils.DateUtils; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @date 2024-04-29 |
| | | */ |
| | | @Service |
| | | @RequiredArgsConstructor |
| | | public class CheckIndexVideoServiceImpl extends ServiceImpl<CheckIndexVideoMapper, CheckIndexVideo> implements ICheckIndexVideoService |
| | | { |
| | | @Autowired |
| | |
| | | { |
| | | return checkIndexVideoMapper.deleteCheckIndexVideoById(id); |
| | | } |
| | | |
| | | @Override |
| | | public CheckIndexVideo dashboard(DashboardQuery dashboardQuery) { |
| | | return checkIndexVideoMapper.dashboard(dashboardQuery); |
| | | } |
| | | } |