Pu Zhibing
2025-03-24 a88ba6b7606a73086cadb02c6115c3c01ce03f3e
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.Car;
import com.ruoyi.system.query.CarListReq;
import com.ruoyi.system.query.CarListResp;
 
/**
 * @author zhibing.pu
 * @Date 2025/3/17 11:38
 */
public interface ICarService extends IService<Car> {
    
    
    /**
     * 定时任务存储最新的车辆数据
     */
    void taskSaveNewCar();
    
    
    /**
     * 获取车辆列表数据
     *
     * @param carListReq
     * @return
     */
    PageInfo<CarListResp> getCarList(CarListReq carListReq);
}