| | |
| | | import cn.gistack.sm.jcsb.entity.DangerReport; |
| | | import cn.gistack.sm.jcsb.mapper.DangerReportMapper; |
| | | import cn.gistack.sm.jcsb.service.IDangerReportService; |
| | | import cn.gistack.sm.jcsb.vo.DangerReportVO; |
| | | import cn.gistack.sm.jcsb.vo.DeviceReportVO; |
| | | import org.springblade.core.mp.base.BaseServiceImpl; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @PROJECT_NAME: skjcmanager |
| | |
| | | @Service |
| | | public class DangerReportServiceImpl extends BaseServiceImpl<DangerReportMapper, DangerReport> implements IDangerReportService { |
| | | |
| | | @Override |
| | | public List<DangerReportVO> getAll(DangerReport dangerReport) { |
| | | return baseMapper.getAll(dangerReport); |
| | | } |
| | | } |