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
| package com.stylefeng.guns.modular.crossCity.server;
|
| import com.baomidou.mybatisplus.service.IService;
| import com.stylefeng.guns.modular.crossCity.model.LineSite;
|
| import java.util.List;
| import java.util.Map;
|
| public interface ILineSiteService extends IService<LineSite> {
|
|
| /**
| * 根据线路获取排班数据
| * @param lineId
| * @param day
| * @return
| * @throws Exception
| */
| List<Map<String, Object>> queryDriver(Integer lineId, String day, Integer driverId) throws Exception;
|
|
| /**
| * 根据司机排班数据id获取数据(剩余座位号和总座位数)
| * @param id
| * @return
| * @throws Exception
| */
| Map<String, Object> querySeat(Integer id) throws Exception;
| }
|
|