| | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | */ |
| | | 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); |
| | | } |