| 123456789101112131415161718192021 |
- package com.jpsoft.employment.config;
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- @Data
- @ConfigurationProperties(prefix = "wx")
- @Component
- public class WxProperties {
- /**
- * 设置微信公众号或者小程序等的appid
- */
- private String appId;
- /**
- * 设置微信公众号或者小程序等的appSecret
- */
- private String appSecret;
- private String token;
- }
|