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);
|
}
|