LsStationRouteService.java
704 Bytes
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
package com.bsth.service;
import com.bsth.entity.LsStationRoute;
import java.util.List;
import java.util.Map;
/**
* @author Hill
*/
public interface LsStationRouteService extends BaseService<LsStationRoute, Integer> {
/**
* 按条件查询所有历史站点路由信息
* @param map
* @return
*/
Iterable<LsStationRoute> findAllByParams(Map<String, Object> map);
/**
* 批量撤销站点路由
* @param ids
*/
void batchDestroy(List<Integer> ids);
/**
* 添加站点路由
* @param stationRoute
*/
Map<String, Object> add(LsStationRoute stationRoute);
/**
* 修改站点路由
* @param stationRoute
*/
Map<String, Object> modify(LsStationRoute stationRoute);
}