GpsDataService.java
310 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);
List<Map<String, Object>> history(String[] nbbmArray, Long st, Long et);
}