Pu Zhibing
2025-03-28 e1ea85f4d18916efcd568b9b886a20184c2daeb2
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.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.web.page.PageInfo;
import com.ruoyi.system.api.model.Driver;
import com.ruoyi.system.query.DriverListReq;
import com.ruoyi.system.query.DriverListResp;
 
/**
 * @author zhibing.pu
 * @Date 2025/3/17 16:26
 */
public interface IDriverService extends IService<Driver> {
    
    
    /**
     * 定时任务获取新驾驶员数据
     */
    void taskSaveNewDriver();
    
    
    /**
     * 获取司机列表数据
     *
     * @param driverListReq
     * @return
     */
    PageInfo<DriverListResp> getDriverList(DriverListReq driverListReq);
}