1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.flightfeather.obd.lightshare.service
|
| import com.flightfeather.obd.lightshare.bean.VehicleInfoVo
|
| /**
| * @author riku
| * Date: 2019/10/25
| * 车辆相关信息接口
| */
| interface VehicleService {
|
| /**
| * 获取车辆信息
| */
| fun getVehicleInfo(pageNum: Int?, pageSize: Int?): List<VehicleInfoVo>
|
| }
|
|