Browse Source

设备离开会诊房间

Jeremy 2 years ago
parent
commit
38162ed16a
1 changed files with 16 additions and 0 deletions
  1. 16 0
      Service/DeviceService.cs

+ 16 - 0
Service/DeviceService.cs

@@ -898,6 +898,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>
         /// 通用异常处理方法