12345678910111213141516171819 |
- package com.jpsoft.smart.config;
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- /**
- * @author 墨鱼_mo
- * @date 2020-3-21 13:42
- */
- @Component
- @ConfigurationProperties(prefix = "wx")
- @Data
- public class WxConfig {
- private String appId;
- private String appSecret;
- }
|