郑永安
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
25
26
27
28
29
package com.gkhy.safePlatform.doublePrevent.rpc.apimodel;
 
import com.gkhy.safePlatform.commons.vo.ResultVO;
import com.gkhy.safePlatform.doublePrevent.rpc.apimodel.model.req.RPCDataCountI1ReqDTO;
import com.gkhy.safePlatform.doublePrevent.rpc.apimodel.model.req.RPCDataCountI2ReqDTO;
import com.gkhy.safePlatform.doublePrevent.rpc.apimodel.model.resp.RPCDataCountI1RespDTO;
import com.gkhy.safePlatform.doublePrevent.rpc.apimodel.model.resp.RPCDataCountI2RespDTO;
 
import java.util.List;
 
public interface PreventRPCDataCountService {
 
    /**
     * 数据统计-隐患数据统计-I1计算 - 月
     */
    ResultVO<RPCDataCountI1RespDTO> listMonthDangerResultCountI1(RPCDataCountI1ReqDTO rpcDataCountI1ReqDTO);
    /**
     * 数据统计-隐患数据统计-I1计算 - 年
     */
    ResultVO<List<RPCDataCountI1RespDTO>> listYearDangerResultCountI1(RPCDataCountI1ReqDTO rpcDataCountI1ReqDTO);
    /**
     * 数据统计-隐患等级-I2计算 - 月
     */
    ResultVO<RPCDataCountI2RespDTO> listMonthDangerLevelCountI2(RPCDataCountI2ReqDTO rpcDataCountI2ReqDTO);
    /**
     * 数据统计-隐患等级-I2计算 - 年
     */
    ResultVO<List<RPCDataCountI2RespDTO>> listYearDangerLevelCountI2(RPCDataCountI2ReqDTO rpcDataCountI2ReqDTO);
}