File was renamed from ycl-common/src/main/java/com/ycl/service/platform/zf/impl/VideowarmEventsreportServiceImpl.java |
| | |
| | | package com.ycl.service.platform.zf.impl; |
| | | package com.ycl.service.zf.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ycl.entity.platform.zf.EnforcelawReport; |
| | | import com.ycl.entity.platform.zf.VideowarmEventsreport; |
| | | import com.ycl.mapper.platform.zf.VideowarmEventsreportMapper; |
| | | import com.ycl.service.platform.zf.IVideowarmEventsreportService; |
| | | import com.ycl.entity.zf.VideoWarnEventsReport; |
| | | import com.ycl.mapper.zf.VideowarmEventsreportMapper; |
| | | import com.ycl.service.zf.IVideowarmEventsreportService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | |
| | | * @since 2022-09-16 |
| | | */ |
| | | @Service |
| | | public class VideowarmEventsreportServiceImpl extends ServiceImpl<VideowarmEventsreportMapper, VideowarmEventsreport> implements IVideowarmEventsreportService { |
| | | public class VideowarmEventsreportServiceImpl extends ServiceImpl<VideowarmEventsreportMapper, VideoWarnEventsReport> implements IVideowarmEventsreportService { |
| | | |
| | | @Autowired |
| | | VideowarmEventsreportMapper eventsreportMapper; |
| | | |
| | | @Override |
| | | public Page selectPageVo(Page<VideowarmEventsreport> page, String startTime, String endTime, String eventName, String eventType, String eventLocation, String eventRegion) { |
| | | public Page selectPageVo(Page<VideoWarnEventsReport> page, String startTime, String endTime, String eventName, String eventType, String eventLocation, String eventRegion) { |
| | | return eventsreportMapper.selectPageVo(page, startTime, endTime, eventLocation, eventName, eventType, eventRegion); |
| | | } |
| | | } |