| | |
| | | import cn.flightfeather.supervision.common.utils.Constant |
| | | import cn.flightfeather.supervision.domain.ds1.entity.BaseDevice |
| | | import cn.flightfeather.supervision.domain.ds1.entity.DeviceStatus |
| | | import cn.flightfeather.supervision.lightshare.vo.AreaVo |
| | | import cn.flightfeather.supervision.lightshare.vo.DataHead |
| | | import cn.flightfeather.supervision.lightshare.vo.MonitorDeviceInfoVo |
| | | import io.swagger.annotations.ApiParam |
| | | import org.springframework.web.bind.annotation.RequestParam |
| | | import org.springframework.web.multipart.MultipartFile |
| | | |
| | | interface DeviceService { |
| | |
| | | *更新设备及图片 |
| | | */ |
| | | fun updateDeviceLocation(deviceLocation: String, deleteImg: List<String>, files: Array<MultipartFile>): Int |
| | | |
| | | fun searchExternalDevice( |
| | | areaVo: AreaVo, keyword: String, page: Int?, perPage: Int?, |
| | | ): Pair<DataHead, MonitorDeviceInfoVo> |
| | | } |