StationRouteService.java
1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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> {
/**
* @Description :TODO(查询树站点与路段数据)
*
* @param map <line.id_eq:线路ID; directions_eq:方向>
*
* @return List<Map<String, Object>>
*/
List<Map<String, Object>> findPoints(Map<String, Object> map);
Map<String, Object> systemQuote(Map<String, Object> map);
/**
* @Description :TODO(查询线路某方向下的站点序号与类型)
*
* @param map <lineId:线路ID; direction:方向;stationRouteCode:站点编码>
*
* @return List<Map<String, Object>>
*/
List<Map<String, Object>> findUpStationRouteCode(Map<String, Object> map);
/**
* @Description :TODO(查询线路某方向下所有站点的中心百度坐标)
*
* @param map <lineId:线路ID; direction:方向>
*
* @return List<Map<String, Object>>
*/
List<Map<String, Object>> getStationRouteCenterPoints(Map<String, Object> map);
/**
* @Description :TODO(撤销站点)
*
* @param map <lineId:线路ID; destroy:是否撤销(0:否;1:是)>
*
* @return Map<String, Object> <SUCCESS ; ERROR>
*/
Map<String, Object> stationRouteIsDestroy(Map<String, Object> map);
}