aijinhui
2023-10-08 2fad5b9483d3e6fec4b8bd1e6f8c578e270b4688
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
package com.ruoyi.statistical.service;
 
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson2.JSONArray;
import com.ruoyi.statistical.param.ESParam;
import com.ruoyi.statistical.vo.CountVo;
import com.ruoyi.utils.result.Results;
import org.springframework.stereotype.Service;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author Administrator
 */
public interface StatisticalService {
    Results factorySave(Map<String,String> map);
 
    Results factorySelect();
 
    List<CountVo> stealelecYear(ESParam esParam);
    List<CountVo> cameraYear(ESParam esParam);
    List<CountVo> moveYear(ESParam esParam);
    List<CountVo> fireYear(ESParam esParam);
    List<CountVo> externalYear(ESParam esParam);
    List<CountVo> accessYear(ESParam esParam);
    List<CountVo> apponekeyYear(ESParam esParam);
    List<CountVo> pumpYear(ESParam esParam);
    List<CountVo> wallYear(ESParam esParam);
    List<CountVo> digitizationYear(ESParam esParam);
    List<CountVo> tubeYear(ESParam esParam);
 
    List<CountVo> stealelecMonth(ESParam esParam);
    List<CountVo> cameraMonth(ESParam esParam);
    List<CountVo> moveMonth(ESParam esParam);
    List<CountVo> fireMonth(ESParam esParam);
    List<CountVo> externalMonth(ESParam esParam);
    List<CountVo> accessMonth(ESParam esParam);
    List<CountVo> apponekeyMonth(ESParam esParam);
    List<CountVo> pumpMonth(ESParam esParam);
    List<CountVo> wallMonth(ESParam esParam);
    List<CountVo> digitizationMonth(ESParam esParam);
    List<CountVo> tubeMonth(ESParam esParam);
}