InoutCarparkService.java 771 Bytes
package com.bsth.service;

import com.bsth.entity.LsStationRoute;
import com.bsth.entity.StationRoute;
import com.bsth.entity.StationRouteCache;
import com.fasterxml.jackson.core.JsonProcessingException;

import javax.servlet.http.HttpServletResponse;
import java.util.List;
import java.util.Map;

public interface InoutCarparkService {

	Map<String, Object> getStartEndByLine(int lineId, int version);

	Map<String, Object> getRouteByStartEnd(int lineId, int version, String start, String end);

	Map<String, Object> sectionSave(Map<String, Object> map);

    Map<String, Object> sectionUpdate(Map<String, Object> map);

    Map<String, Object> destroy(Map<String, Object> map);

    void pathPlaningByHistory(long schId, int versions) throws JsonProcessingException;
}