package com.gkhy.safePlatform.doublePrevention.service.baseService; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.IService; import com.gkhy.safePlatform.doublePrevention.entity.PreventReportConfig; import com.gkhy.safePlatform.doublePrevention.entity.PreventReportConfigLog; import com.gkhy.safePlatform.doublePrevention.entity.dto.req.PreventReportConfigLogQueryReqDTO; import com.gkhy.safePlatform.doublePrevention.repository.param.PreventReportConfigUpdateParams; import java.util.List; public interface PreventReportConfigService extends IService { /** * 数据上报配置-查询 */ List ListReportConfigs(); /** * 数据上报配置-修改 */ int updateReportConfig(PreventReportConfigUpdateParams updateParams); /** * 数据上报配置-按照id查询 */ PreventReportConfig getReportConfigById(int Id); }