GpsService.java
529 Bytes
package com.bsth.service.gps;
import java.util.List;
import java.util.Map;
public interface GpsService {
List<Map<String, Object>> history(String device, Long startTime, Long endTime, int directions);
List<Map<String, Object>> history(String[] nbbmArray, Long st, Long et);
Map<String, Object> findBuffAeraByCode(String code, String type);
Map<String, Object> search(Map<String, Object> map, int page, int size, String order, String direction);
Map<String,Object> removeRealGps(String device);
}