Pu Zhibing
2025-03-17 b68ac80de1daf22142886af16d36479259106065
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.api.model.Driver;
 
/**
 * @author zhibing.pu
 * @Date 2025/3/17 16:26
 */
public interface IDriverService extends IService<Driver> {
    
    
    /**
     * 定时任务获取新驾驶员数据
     */
    void taskSaveNewDriver();
}