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 listMonthDangerResultCountI1(RPCDataCountI1ReqDTO rpcDataCountI1ReqDTO); /** * 数据统计-隐患数据统计-I1计算 - 年 */ ResultVO> listYearDangerResultCountI1(RPCDataCountI1ReqDTO rpcDataCountI1ReqDTO); /** * 数据统计-隐患等级-I2计算 - 月 */ ResultVO listMonthDangerLevelCountI2(RPCDataCountI2ReqDTO rpcDataCountI2ReqDTO); /** * 数据统计-隐患等级-I2计算 - 年 */ ResultVO> listYearDangerLevelCountI2(RPCDataCountI2ReqDTO rpcDataCountI2ReqDTO); }