33 lines
614 B
Java
33 lines
614 B
Java
|
package com.ruoyi.common.config;
|
||
|
|
||
|
import lombok.Data;
|
||
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||
|
import org.springframework.stereotype.Component;
|
||
|
import java.util.Map;
|
||
|
/**
|
||
|
* Created by tao.
|
||
|
* Date: 2023/3/21 15:02
|
||
|
* 描述:
|
||
|
*/
|
||
|
|
||
|
@Data
|
||
|
@Component
|
||
|
//从配置文件里获取
|
||
|
@ConfigurationProperties(prefix = "wechat")
|
||
|
public class WechatAccountConfig {
|
||
|
|
||
|
/**
|
||
|
* 公众平台id
|
||
|
*/
|
||
|
private String mpAppId;
|
||
|
|
||
|
/**
|
||
|
* 公众平台密钥
|
||
|
*/
|
||
|
private String mpAppSecret;
|
||
|
|
||
|
/**
|
||
|
* 微信模版id
|
||
|
*/
|
||
|
private Map<String, String> templateId;
|
||
|
}
|