123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- 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;
- }
- }
|