GpsService.java 364 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);
}