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
38
39
40
41
42
43
44
45
| package org.ruoyi.config;
|
| import lombok.Data;
| import lombok.Getter;
| import lombok.Setter;
| import java.util.List;
|
| /**
| * @author <a href="https://github.com/binarywang">Binary Wang</a>
| */
| @Data
| public class WxCpProperties {
| /**
| * 设置企业微信的corpId
| */
| private String corpId;
|
| private List<AppConfig> appConfigs;
|
| @Getter
| @Setter
| public static class AppConfig {
| /**
| * 设置企业微信应用的AgentId
| */
| private Integer agentId;
|
| /**
| * 设置企业微信应用的Secret
| */
| private String secret;
|
| /**
| * 设置企业微信应用的token
| */
| private String token;
|
| /**
| * 设置企业微信应用的EncodingAESKey
| */
| private String aesKey;
|
| }
|
| }
|
|