Pu Zhibing
2025-04-10 153b905185b40182978758d409accbb76f678cb1
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
33
34
35
36
37
38
39
40
41
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);
    
    /**
     * 定时任务修改车辆状态
     */
    void taskUpdateCarStatus();
    
    
    /**
     * 检测视频播放,清除没有播放的视频流
     * @return
     */
    void taskPlayDetection(Integer deviceNumber);
}