feiyu02
2024-12-16 b3e273990fda27b68dfcf2c7f9d78311a5279885
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.flightfeather.uav.lightshare.service
 
import com.flightfeather.uav.domain.entity.DeviceInfo
import com.flightfeather.uav.lightshare.bean.BaseResponse
 
interface DeviceService {
 
    fun getDeviceInfo(type: String?): List<DeviceInfo>
 
    fun createDevice(deviceInfo: DeviceInfo): Int
 
    fun deleteDevice(deviceCode: String): Int
}