riku
2020-06-02 9a5f9bfc4f4b153dd0175c63f563d8047e1e2515
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.flightfeather.uav.repository
 
import com.flightfeather.uav.domain.entity.VehicleInfo
 
/**
 * @author riku
 * Date: 2019/10/25
 */
interface VehicleRepository {
 
    /**
     * 获取车辆信息
     */
    fun getVehicleInfo(pageNum: Int?, pageSize: Int?): List<VehicleInfo>
}