src/main/kotlin/com/flightfeather/uav/repository/VehicleRepository.kt
@@ -1,15 +1,9 @@ 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> }