zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
package org.jeecg.config.thirdapp;
 
import lombok.Data;
 
/**
 * 第三方App对接
 */
@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);
    }
 
}