From 9e3aea74b6e39d24f6247ec8703880a7b375137e Mon Sep 17 00:00:00 2001 From: lishiwei <3230787218@qq.com> Date: Fri, 17 Jul 2026 14:44:42 +0800 Subject: [PATCH] =?UTF-8?q?feat():=20=E6=B7=BB=E5=8A=A0=E5=AE=A2=E6=88=B7?= =?UTF-8?q?=E7=AB=AF=E5=87=AD=E8=AF=81=E5=AD=97=E6=AE=B5=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../zcloud/zcGbsServicer/service/VideoPlatformServiceImpl.java | 2 ++ .../zcGbsServicer/dto/clientobject/VideoPlatformLoginCO.java | 2 ++ 2 files changed, 4 insertions(+) diff --git a/web-app/src/main/java/com/zcloud/zcGbsServicer/service/VideoPlatformServiceImpl.java b/web-app/src/main/java/com/zcloud/zcGbsServicer/service/VideoPlatformServiceImpl.java index aa6251e..a4de807 100644 --- a/web-app/src/main/java/com/zcloud/zcGbsServicer/service/VideoPlatformServiceImpl.java +++ b/web-app/src/main/java/com/zcloud/zcGbsServicer/service/VideoPlatformServiceImpl.java @@ -384,6 +384,8 @@ public class VideoPlatformServiceImpl extends FireAlarmServiceSupport implements co.setAuthStatus(AUTH_STATUS_SUCCESS); co.setAuthorizedUserCount(null); co.setResultMsg("固定会议室入会参数获取成功"); + co.setClientId(properties.getClientId()); + co.setClientSecret(properties.getClientSecret()); return SingleResponse.of(co); } diff --git a/web-client/src/main/java/com/zcloud/zcGbsServicer/dto/clientobject/VideoPlatformLoginCO.java b/web-client/src/main/java/com/zcloud/zcGbsServicer/dto/clientobject/VideoPlatformLoginCO.java index 355b217..5935759 100644 --- a/web-client/src/main/java/com/zcloud/zcGbsServicer/dto/clientobject/VideoPlatformLoginCO.java +++ b/web-client/src/main/java/com/zcloud/zcGbsServicer/dto/clientobject/VideoPlatformLoginCO.java @@ -24,4 +24,6 @@ public class VideoPlatformLoginCO extends ClientObject { private Integer authStatus; private Integer authorizedUserCount; private String resultMsg; + private String clientId; + private String clientSecret; }