puzhibing
2023-06-13 7860e5cb6db60aeb82c640651998f8294635df5b
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package com.dsh.course.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.course.entity.Car;
import com.dsh.course.model.dto.CarServerRes;
import com.dsh.course.model.vo.BaseWarpper;
import com.dsh.course.model.vo.CarInfoRes;
 
import java.util.Date;
import java.util.List;
import java.util.Map;
import com.dsh.guns.modular.system.util.ResultUtil;
public interface ICarService extends IService<Car> {
 
 
    /**
     * 获取车辆详情
     * @param id
     * @return
     */
    CarInfoRes queryCarById(Integer id);
 
 
    /**
     * 获取自己的车辆数据及空闲车辆
     * @param uid
     * @return
     * @throws Exception
     */
    Map<String, Object> queryCars(Integer uid) throws Exception;
 
 
    /**
     * 判断车辆是否被绑定
     * @param id
     * @return
     * @throws Exception
     */
    boolean idle(Integer id) throws Exception;
 
 
    /**
     * 获取所有车辆品牌
     * @return
     * @throws Exception
     */
    List<Map<String, Object>> queryAllBrand(Integer language) throws Exception;
 
 
    /**
     * 查询车辆型号
     * @param brandId
     * @return
     * @throws Exception
     */
    List<Map<String, Object>> queryCarModel(Integer brandId) throws Exception;
 
 
    /**
     * 添加车辆
     * @param modelId
     * @param color
     * @param licensePlate
     * @param time
     * @param drivingLicensePhoto
     * @param carPhoto
     * @param insurancePhoto
     * @param uid
     * @return
     * @throws Exception
     */
    ResultUtil addCar(Integer modelId, String color, String licensePlate, Date time, String drivingLicensePhoto,
                      String carPhoto, String insurancePhoto, Integer uid) throws Exception;
 
 
 
 
    /**
     * 获取空闲车辆
     * @param companyId
     * @return
     * @throws Exception
     */
    List<BaseWarpper> queryIdleData(Integer companyId) throws Exception;
 
    CarServerRes getCarServer(String carId);
 
}