StationRouteService.java 825 Bytes
package com.bsth.service;

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

import com.bsth.entity.StationRoute;

/**
 * 
 * @Interface: StationRouteService(站点路由service业务层实现接口)
 * 
 * @Extends : BaseService
 * 
 * @Description: TODO(站点路由service业务层实现接口)
 * 
 * @Author bsth@lq
 * 
 * @Date 2016年5月03日 上午9:21:17
 *
 * @Version 公交调度系统BS版 0.1
 * 
 */
public interface StationRouteService extends BaseService<StationRoute, Integer> {

	 List<Map<String, Object>> findPoints(Map<String, Object> map);
	 
	 Map<String, Object> systemQuote(Map<String, Object> map);
	 
	 List<Map<String, Object>> findUpStationRouteCode(Map<String, Object> map);
	 
	 List<Map<String, Object>> getStationRouteCenterPoints(Map<String, Object> map);
}