liuxiaolong
2019-05-06 a7bed6b4cfecd61ec153818945f982c5bb796b98
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.cloud.attendance.service;
import com.alibaba.fastjson.JSONObject;
import com.cloud.attendance.model.PersonForEs;
 
import java.util.Date;
import java.util.List;
import java.util.Map;
 
public interface QueryEsService {
 
        Map<String, Object>  queryAttRecord(String contentValue, String location, String identity, String gradeValue,
                                            String classValue, Boolean delFlag, List<String> orgIds, String orderName, String sortDate, Date startTime, Date endTime, Integer page, Integer size);
 
        List<JSONObject> queryAttRecordBySecond();
 
    Map<String,Object> queryPersonById(String pid,Date startTime, Date endTime);
 
    // 从es 查询所有人员  EnumStr.picDateField
    public List<PersonForEs> queryPersonIdFromEs();
 
}