PeopleCarPlanService.java
543 Bytes
package com.bsth.service.schedule;
import java.util.List;
import java.util.Map;
public interface PeopleCarPlanService {
List<Map<String, Object>> queryPeopleCar(Map<String, Object> map);
List<Map<String, Object>> workDaily(Map<String, Object> map);
Map<String, Object> scheduleAnaly(Map<String, Object> map);
List<Map<String, Object>> getModel(Map<String, Object> map);
List<Map<String, Object>> firstAndLastBus(Map<String, Object> map);
List<Map<String, Object>> commandState(Map<String, Object> map);
}