郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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<PreventCJReportConfig> {
 
    /**
     * 数据上报配置-查询
     */
    List<PreventCJReportConfig> ListReportConfigs();
    /**
     * 数据上报配置-修改
     */
    int updateReportConfig(PreventReportConfigUpdateParams updateParams);
    /**
     * 数据上报配置-按照id查询
     */
    PreventCJReportConfig getReportConfigById(int Id);
}