You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/social/SocialTypeEnum.java
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,12 @@ public enum SocialTypeEnum implements ArrayValuable<Integer> {
Copy file name to clipboardExpand all lines: yudao-module-system/yudao-module-system-server/src/main/java/cn/iocoder/yudao/module/system/controller/admin/socail/vo/client/SocialClientRespVO.java
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,12 @@ public class SocialClientRespVO {
27
27
@Schema(description = "客户端密钥", requiredMode = Schema.RequiredMode.REQUIRED, example = "peter")
28
28
private String clientSecret;
29
29
30
-
@Schema(description = "授权方的网页应用编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "2000045")
30
+
@Schema(description = "授权方的网页应用编号", example = "2000045")
31
31
private String agentId;
32
32
33
+
@Schema(description = "publicKey 公钥", example = "2000045")
34
+
private String publicKey;
35
+
33
36
@Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
Copy file name to clipboardExpand all lines: yudao-module-system/yudao-module-system-server/src/main/java/cn/iocoder/yudao/module/system/controller/admin/socail/vo/client/SocialClientSaveReqVO.java
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,9 @@ public class SocialClientSaveReqVO {
45
45
@Schema(description = "授权方的网页应用编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "2000045")
46
46
private String agentId;
47
47
48
+
@Schema(description = "publicKey 公钥", example = "2000045")
49
+
private String publicKey;
50
+
48
51
@Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
49
52
@NotNull(message = "状态不能为空")
50
53
@InEnum(CommonStatusEnum.class)
@@ -58,4 +61,12 @@ public boolean isAgentIdValid() {
0 commit comments