package com.gkhy.safePlatform.doublePrevention.service; import com.gkhy.safePlatform.commons.vo.ResultVO; import com.gkhy.safePlatform.doublePrevention.entity.dto.req.DataCountI1ReqDTO; import com.gkhy.safePlatform.doublePrevention.entity.dto.req.DataCountI2ReqDTO; import com.gkhy.safePlatform.doublePrevention.entity.dto.resp.DataCountI1RespDTO; import com.gkhy.safePlatform.doublePrevention.entity.dto.resp.DataCountI2RespDTO; import java.util.List; public interface DataCountService { /** * 数据统计-隐患数据统计-I1计算 */ DataCountI1RespDTO listMonthDataCountI1(DataCountI1ReqDTO dataCountI1ReqDTO); /** * 数据统计-隐患数据统计-I1计算 - 年 */ List listYearDataCountI1(DataCountI1ReqDTO dataCountI1ReqDTO); /** * 数据统计-隐患数据统计-I2计算 - 月 */ DataCountI2RespDTO listMonthDataCountI2(DataCountI2ReqDTO dataCountI2ReqDTO); /** * 数据统计-隐患数据统计-I2计算 - 年 */ List listYearDataCountI2(DataCountI2ReqDTO dataCountI2ReqDTO); }