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