GpsDataService.java 233 Bytes
package com.bsth.vehicle.gpsdata.service;

import java.util.List;
import java.util.Map;

public interface GpsDataService {
	
	List<Map<String, Object>> history(String device, Long startTime, Long endTime, int directions);
}