危化品全生命周期管理后端
git
heheng
2025-03-06 07a6e79342c381d4d8c98a92a216c41dc9502a09
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.gkhy.hazmat.system.service;
 
 
import com.gkhy.hazmat.common.api.CommonPage;
import com.gkhy.hazmat.system.domain.vo.HzEntryRecordVO;
import com.gkhy.hazmat.system.domain.vo.HzHazmatUseVO;
import com.gkhy.hazmat.system.domain.vo.HzHomeDataVO;
 
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.List;
 
/**
 * 统计 服务类
 */
public interface HzStatisticService {
    /**
     * 一周入库统计
     * @return
     */
    public List<HzEntryRecordVO> entryStatic();
 
    /**
     * 一周领用统计
     * @return
     */
    public List<HzEntryRecordVO> useEverydayStatic();
 
    /**
     * 一周领用最多的危化品(最多前10个)
     * @return
     */
    public List<HzHazmatUseVO> maxUseStatic();
 
    /**
     * 首页数据统计
     * @return
     */
    HzHomeDataVO homeDataStatistic();
 
    /**
     * 分页统计危化品使用数量
     * @param startTime
     * @param endTime
     * @return
     */
    CommonPage useStatic(String startTime, String endTime);
 
    void importBaiscUse(HttpServletResponse response, String startTime, String endTime) throws IOException;
}