feiyu02
2024-01-26 01eae19a4870033e879a3faa6749eece92926cab
1
2
3
4
5
6
7
8
9
package com.flightfeather.uav.lightshare.service
 
import com.flightfeather.uav.domain.entity.DeviceInfo
import com.flightfeather.uav.lightshare.bean.BaseResponse
 
interface DeviceService {
 
    fun getDeviceInfo(): BaseResponse<List<DeviceInfo>>
}