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.Car;
 
/**
 * @author zhibing.pu
 * @Date 2025/3/17 11:38
 */
public interface ICarService extends IService<Car> {
    
    
    /**
     * 定时任务存储最新的车辆数据
     */
    void taskSaveNewCar();
}