| | |
| | | package com.ycl.platform.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ycl.platform.domain.entity.CheckIndexVideo; |
| | | 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; |
| | | |
| | | /** |
| | | * 视频指标概率数据Service业务层处理 |
| | | * |
| | | * |
| | | * @author ruoyi |
| | | * @date 2024-04-29 |
| | | */ |
| | | @Service |
| | | public class CheckIndexVideoServiceImpl implements ICheckIndexVideoService |
| | | @RequiredArgsConstructor |
| | | public class CheckIndexVideoServiceImpl extends ServiceImpl<CheckIndexVideoMapper, CheckIndexVideo> implements ICheckIndexVideoService |
| | | { |
| | | @Autowired |
| | | private CheckIndexVideoMapper checkIndexVideoMapper; |
| | | |
| | | /** |
| | | * 查询视频指标概率数据 |
| | | * |
| | | * |
| | | * @param id 视频指标概率数据主键 |
| | | * @return 视频指标概率数据 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询视频指标概率数据列表 |
| | | * |
| | | * |
| | | * @param checkIndexVideo 视频指标概率数据 |
| | | * @return 视频指标概率数据 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 新增视频指标概率数据 |
| | | * |
| | | * |
| | | * @param checkIndexVideo 视频指标概率数据 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 修改视频指标概率数据 |
| | | * |
| | | * |
| | | * @param checkIndexVideo 视频指标概率数据 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 批量删除视频指标概率数据 |
| | | * |
| | | * |
| | | * @param ids 需要删除的视频指标概率数据主键 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 删除视频指标概率数据信息 |
| | | * |
| | | * |
| | | * @param id 视频指标概率数据主键 |
| | | * @return 结果 |
| | | */ |
| | |
| | | { |
| | | return checkIndexVideoMapper.deleteCheckIndexVideoById(id); |
| | | } |
| | | |
| | | @Override |
| | | public CheckIndexVideo dashboard(DashboardQuery dashboardQuery) { |
| | | return checkIndexVideoMapper.dashboard(dashboardQuery); |
| | | } |
| | | } |