1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| package org.jeecg.config.thirdapp;
|
| import lombok.Data;
|
| /**
| * 第三方App对接
| * @author: jeecg-boot
| */
| @Data
| public class ThirdAppTypeItemVo {
|
| /**
| * 是否启用
| */
| private boolean enabled;
| /**
| * 应用Key
| */
| private String clientId;
| /**
| * 应用Secret
| */
| private String clientSecret;
| /**
| * 应用ID
| */
| private String agentId;
| /**
| * 目前仅企业微信用到:自建应用Secret
| */
| private String agentAppSecret;
|
| public int getAgentIdInt() {
| return Integer.parseInt(agentId);
| }
|
| }
|
|