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