package com.gkhy.safePlatform.riskCtrl.service.baseService.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.gkhy.safePlatform.riskCtrl.entity.PreventMonthReportDetail; import com.gkhy.safePlatform.riskCtrl.repository.PreventMonthReportDetailRepository; import com.gkhy.safePlatform.riskCtrl.service.baseService.PreventMonthReportDetailService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class PreventMonthReportDetailServiceImpl extends ServiceImpl implements PreventMonthReportDetailService { @Autowired private PreventMonthReportDetailRepository preventMonthReportDetailRepository; }