package com.ruoyi.doublePrevention.repository; import com.ruoyi.doublePrevention.entity.PreventReportConfig; import com.ruoyi.doublePrevention.repository.param.PreventReportConfigUpdateParams; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface PreventReportConfigRepository { /** * 数据上报配置-查询 */ List ListReportConfigs(); /** * 数据上报配置-修改 */ int updateReportConfig(PreventReportConfigUpdateParams updateParams); /** * 数据上报配置-按照id查询 */ PreventReportConfig selectById(int id); }