package com.gkhy.safePlatform.doublePrevention.service.baseService.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.gkhy.safePlatform.doublePrevention.entity.CJReport.PreventCJReportResultData; import com.gkhy.safePlatform.doublePrevention.repository.PreventCJReportResultDataRepository; import com.gkhy.safePlatform.doublePrevention.service.baseService.PreventCJReportResultDataService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service("PreventCJReportResultDataService") public class PreventCJReportResultDataServiceImpl extends ServiceImpl implements PreventCJReportResultDataService { @Autowired private PreventCJReportResultDataRepository preventCJReportResultDataRepository; }