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
21
22
23
24
25
26
package com.cloud.retrieve.service;
 
import com.alibaba.fastjson.JSONObject;
import com.cloud.retrieve.model.EsDataQueryParam;
 
import java.text.ParseException;
import java.util.Date;
 
public interface EsDataService {
 
    JSONObject getAllDataByMoreParams(EsDataQueryParam esSearch);
 
    JSONObject updateEsDataByEsId(String dataId, String ack_alarm);
 
    JSONObject findEsPersonAlarmDataByEquPage(Integer page, Integer size,String equId,String personIsHub);
 
    JSONObject findEsAllAlarmDataByPage(Integer page, Integer size, Date startDate ,Date endDate);
 
    JSONObject getPersonDetail(String id, String personId);
 
    JSONObject getAccompanyPerson(String videoReqNum, String personId ,String picDate,String Id) throws ParseException;
 
    JSONObject getPersonnLocus(String videoReqNum, String startDate, String endDate);
 
    JSONObject getPersonnLocusByRedis(String picId);
}