puzhibing
2023-02-15 2811bab657aab4145b65a45a824fb63e93b58e30
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
package com.stylefeng.guns.modular.system.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.stylefeng.guns.modular.system.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) throws Exception;
 
 
    /**
     * 根据司机排班数据id获取数据(剩余座位号和总座位数)
     * @param id
     * @return
     * @throws Exception
     */
    Map<String, Object> querySeat(Integer id) throws Exception;
 
 
 
}