package org.ruoyi.config; import lombok.Data; import lombok.Getter; import lombok.Setter; import org.springframework.boot.context.properties.ConfigurationProperties; import java.util.List; /** * @author Binary Wang */ @Data @ConfigurationProperties(prefix = "wechat.cp") public class WxCpProperties { /** * 设置企业微信的corpId */ private String corpId; private List appConfigs; @Getter @Setter public static class AppConfig { /** * 设置企业微信应用的AgentId */ private Integer agentId; /** * 设置企业微信应用的Secret */ private String secret; /** * 设置企业微信应用的token */ private String token; /** * 设置企业微信应用的EncodingAESKey */ private String aesKey; } }