package com.gkhy.safePlatform.riskCtrl.service.baseService.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.gkhy.safePlatform.riskCtrl.entity.IncidentMonthReportItem; import com.gkhy.safePlatform.riskCtrl.repository.IncidentMonthReportItemRepository; import com.gkhy.safePlatform.riskCtrl.service.baseService.IncidentMonthReportItemService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Service public class IncidentMonthReportItemServiceImpl extends ServiceImpl implements IncidentMonthReportItemService { @Autowired private IncidentMonthReportItemRepository incidentMonthReportItemRepository; @Override public List listByReportId(Long reportId) { return incidentMonthReportItemRepository.listByReportId(reportId); } }