19 lines
464 B
Java
19 lines
464 B
Java
package com.peanut.modules.app.config;
|
|
|
|
import lombok.Data;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@ConfigurationProperties(prefix = "aliyun.sms")
|
|
@Component
|
|
@Data
|
|
public class SMSConfig {
|
|
|
|
private String accessKeyId;
|
|
private String accessKeySecret;
|
|
private String singName;
|
|
private String templateCode;
|
|
private String sTemplateCode;//国际短信模版
|
|
|
|
}
|