1.新增邮件,阿里,腾讯短信调用接口
2.新增微信模板通知,目前通知接口都是同步调用 3.添加redisson,延迟消息队列,超时订单自动取消
This commit is contained in:
225
yshop-api/src/main/java/co/yixiang/config/NotifyProperties.java
Normal file
225
yshop-api/src/main/java/co/yixiang/config/NotifyProperties.java
Normal file
@ -0,0 +1,225 @@
|
||||
package co.yixiang.config;
|
||||
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@ConfigurationProperties(prefix = "yshop.notify")
|
||||
public class NotifyProperties {
|
||||
private Mail mail;
|
||||
private Sms sms;
|
||||
private Wx wx;
|
||||
|
||||
public Mail getMail() {
|
||||
return mail;
|
||||
}
|
||||
|
||||
public void setMail(Mail mail) {
|
||||
this.mail = mail;
|
||||
}
|
||||
|
||||
public Sms getSms() {
|
||||
return sms;
|
||||
}
|
||||
|
||||
public void setSms(Sms sms) {
|
||||
this.sms = sms;
|
||||
}
|
||||
|
||||
public Wx getWx() {
|
||||
return wx;
|
||||
}
|
||||
|
||||
public void setWx(Wx wx) {
|
||||
this.wx = wx;
|
||||
}
|
||||
|
||||
public static class Mail {
|
||||
private boolean enable;
|
||||
private String host;
|
||||
private String username;
|
||||
private String password;
|
||||
private String sendfrom;
|
||||
private String sendto;
|
||||
|
||||
public boolean isEnable() {
|
||||
return enable;
|
||||
}
|
||||
|
||||
public void setEnable(boolean enable) {
|
||||
this.enable = enable;
|
||||
}
|
||||
|
||||
public String getHost() {
|
||||
return host;
|
||||
}
|
||||
|
||||
public void setHost(String host) {
|
||||
this.host = host;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public String getSendfrom() {
|
||||
return sendfrom;
|
||||
}
|
||||
|
||||
public void setSendfrom(String sendfrom) {
|
||||
this.sendfrom = sendfrom;
|
||||
}
|
||||
|
||||
public String getSendto() {
|
||||
return sendto;
|
||||
}
|
||||
|
||||
public void setSendto(String sendto) {
|
||||
this.sendto = sendto;
|
||||
}
|
||||
}
|
||||
|
||||
public static class Sms {
|
||||
private boolean enable;
|
||||
private String active;
|
||||
private String sign;
|
||||
private Tencent tencent;
|
||||
private Aliyun aliyun;
|
||||
private List<Map<String, String>> template = new ArrayList<>();
|
||||
|
||||
public boolean isEnable() {
|
||||
return enable;
|
||||
}
|
||||
|
||||
public void setEnable(boolean enable) {
|
||||
this.enable = enable;
|
||||
}
|
||||
|
||||
public List<Map<String, String>> getTemplate() {
|
||||
return template;
|
||||
}
|
||||
|
||||
public void setTemplate(List<Map<String, String>> template) {
|
||||
this.template = template;
|
||||
}
|
||||
|
||||
public String getActive() {
|
||||
return active;
|
||||
}
|
||||
|
||||
public void setActive(String active) {
|
||||
this.active = active;
|
||||
}
|
||||
|
||||
public String getSign() {
|
||||
return sign;
|
||||
}
|
||||
|
||||
public void setSign(String sign) {
|
||||
this.sign = sign;
|
||||
}
|
||||
|
||||
public Tencent getTencent() {
|
||||
return tencent;
|
||||
}
|
||||
|
||||
public void setTencent(Tencent tencent) {
|
||||
this.tencent = tencent;
|
||||
}
|
||||
|
||||
public Aliyun getAliyun() {
|
||||
return aliyun;
|
||||
}
|
||||
|
||||
public void setAliyun(Aliyun aliyun) {
|
||||
this.aliyun = aliyun;
|
||||
}
|
||||
|
||||
public static class Tencent {
|
||||
private int appid;
|
||||
private String appkey;
|
||||
|
||||
public int getAppid() {
|
||||
return appid;
|
||||
}
|
||||
|
||||
public void setAppid(int appid) {
|
||||
this.appid = appid;
|
||||
}
|
||||
|
||||
public String getAppkey() {
|
||||
return appkey;
|
||||
}
|
||||
|
||||
public void setAppkey(String appkey) {
|
||||
this.appkey = appkey;
|
||||
}
|
||||
}
|
||||
|
||||
public static class Aliyun {
|
||||
private String regionId;
|
||||
private String accessKeyId;
|
||||
private String accessKeySecret;
|
||||
|
||||
public String getRegionId() {
|
||||
return regionId;
|
||||
}
|
||||
|
||||
public void setRegionId(String regionId) {
|
||||
this.regionId = regionId;
|
||||
}
|
||||
|
||||
public String getAccessKeyId() {
|
||||
return accessKeyId;
|
||||
}
|
||||
|
||||
public void setAccessKeyId(String accessKeyId) {
|
||||
this.accessKeyId = accessKeyId;
|
||||
}
|
||||
|
||||
public String getAccessKeySecret() {
|
||||
return accessKeySecret;
|
||||
}
|
||||
|
||||
public void setAccessKeySecret(String accessKeySecret) {
|
||||
this.accessKeySecret = accessKeySecret;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static class Wx {
|
||||
private boolean enable;
|
||||
private List<Map<String, String>> template = new ArrayList<>();
|
||||
|
||||
public boolean isEnable() {
|
||||
return enable;
|
||||
}
|
||||
|
||||
public void setEnable(boolean enable) {
|
||||
this.enable = enable;
|
||||
}
|
||||
|
||||
public List<Map<String, String>> getTemplate() {
|
||||
return template;
|
||||
}
|
||||
|
||||
public void setTemplate(List<Map<String, String>> template) {
|
||||
this.template = template;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user