package com.gkhy.safePlatform.doublePrevention.service.baseService; import com.baomidou.mybatisplus.extension.service.IService; import com.gkhy.safePlatform.doublePrevention.entity.CJReport.PreventCJReportConfig; import com.gkhy.safePlatform.doublePrevention.entity.PreventReportConfig; import com.gkhy.safePlatform.doublePrevention.repository.param.PreventReportConfigUpdateParams; import java.util.List; public interface PreventCJReportConfigService extends IService { /** * 数据上报配置-查询 */ List ListReportConfigs(); /** * 数据上报配置-修改 */ int updateReportConfig(PreventReportConfigUpdateParams updateParams); /** * 数据上报配置-按照id查询 */ PreventCJReportConfig getReportConfigById(int Id); }