BusIntervalService.java 885 Bytes
package com.bsth.service;

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

import com.bsth.entity.realcontrol.ChildTaskPlan;


public interface BusIntervalService {
	
	List<Map<String, Object>> getDir(Map<String, Object> map);
	
	List<Map<String, Object>> getLp(Map<String, Object> map);
	
	List<Map<String, Object>> interval(Map<String, Object> map);
	
	Map<String, Object> timeAndSpeed(Map<String, Object> map);

	List<Map<String, Object>> lineTimeAnaliy(Map<String, Object> map);
	
	List<Map<String, Object>> lbStatuAnaly(Map<String, Object> map);
	
	List<Map<String, Object>> correctStatis(Map<String, Object> map);

	Map<String, Object> exportWaybillMore(Map<String, Object> map);
	
	List<Map<String, Object>> onTime(Map<String, Object> map);
	
	Map<Long, Set<ChildTaskPlan>> getChildTaskPlans(Long schedule1, Long schedule2);
}