소스 검색

Merge branch 'master' of http://git.ius.plus/Project-Wing/WingDeviceService

fly 2 년 전
부모
커밋
b37a17b7c9
1개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제
  1. 16 0
      Service/DeviceService.cs

+ 16 - 0
Service/DeviceService.cs

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