package com.flightfeather.uav.lightshare.service.impl
|
|
import com.flightfeather.uav.domain.entity.RealTimeData
|
import com.flightfeather.uav.lightshare.bean.VehicleInfoVo
|
import com.flightfeather.uav.lightshare.service.VehicleService
|
import com.flightfeather.uav.repository.VehicleRepository
|
import org.springframework.beans.BeanUtils
|
import org.springframework.stereotype.Service
|
|
/**
|
* @author riku
|
* Date: 2019/10/25
|
*/
|
@Service
|
class VehicleServiceImpl() : VehicleService {
|
override fun getVehicleInfo(pageNum: Int?, pageSize: Int?): List<VehicleInfoVo> {
|
|
return emptyList()
|
}
|
}
|