liuxiaolong
2019-05-06 0bc4f4c791437b39b8c30624f5c21f8c855dc61d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.cloud.retrieve.service;
 
 
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
 
import java.util.List;
 
public interface AggDataByEsService {
 
    JSONArray getAllDataBaseFromEs();
 
    JSONArray getAnalyListByEs();
 
    JSONObject aggEsDevSum();
 
    public JSONObject aggEsPersonSum();
 
    JSONObject aggDevSumByEsParams(List<String> baseName, List<String> analyType, List<String> videoReqNum, String startDate, String endDate);
}