郑永安
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
30
31
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<DataCountI1RespDTO> listYearDataCountI1(DataCountI1ReqDTO dataCountI1ReqDTO);
 
    /**
     * 数据统计-隐患数据统计-I2计算 - 月
     */
    DataCountI2RespDTO listMonthDataCountI2(DataCountI2ReqDTO dataCountI2ReqDTO);
    /**
     * 数据统计-隐患数据统计-I2计算 - 年
     */
    List<DataCountI2RespDTO> listYearDataCountI2(DataCountI2ReqDTO dataCountI2ReqDTO);
 
}