WxProperties.java 501 B

123456789101112131415161718192021
  1. package com.jpsoft.employment.config;
  2. import lombok.Data;
  3. import org.springframework.boot.context.properties.ConfigurationProperties;
  4. import org.springframework.stereotype.Component;
  5. @Data
  6. @ConfigurationProperties(prefix = "wx")
  7. @Component
  8. public class WxProperties {
  9. /**
  10. * 设置微信公众号或者小程序等的appid
  11. */
  12. private String appId;
  13. /**
  14. * 设置微信公众号或者小程序等的appSecret
  15. */
  16. private String appSecret;
  17. private String token;
  18. }