|
@@ -899,6 +899,22 @@ namespace WingDeviceService.Service
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 设备离开会诊房间
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="request">设备离开会诊房间请求实体</param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<DeviceLeaveLiveConsultationResult> DeviceLeaveLiveConsultationAsync(DeviceLeaveLiveConsultationRequest request)
|
|
|
+ {
|
|
|
+ var deviceCode = await GetClientIdByTokenAsync(request.Token);
|
|
|
+
|
|
|
+ var result = new DeviceLeaveLiveConsultationResult
|
|
|
+ {
|
|
|
+ Success = false,
|
|
|
+ };
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
/// <summary>
|
|
|
/// 通用异常处理方法
|