WxCpAppProperties.java 493 B

1234567891011121314151617181920212223242526272829303132
  1. package cn.nosum.wx.cp.config;
  2. import lombok.Data;
  3. /**
  4. * 企业微信配置.
  5. *
  6. * @author Young
  7. */
  8. @Data
  9. public class WxCpAppProperties {
  10. /**
  11. * 设置企业微信应用的AgentId
  12. */
  13. private Integer agentId;
  14. /**
  15. * 设置企业微信应用的Secret
  16. */
  17. private String secret;
  18. /**
  19. * 设置企业微信应用的token
  20. */
  21. private String token;
  22. /**
  23. * 设置企业微信应用的EncodingAESKey
  24. */
  25. private String aesKey;
  26. }