fix(商城): 添加支付宝支付
parent
810489a53b
commit
def0654df1
@ -0,0 +1,90 @@
|
||||
package com.wayn.common.config;
|
||||
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
@ConfigurationProperties(prefix = "alipay")
|
||||
public class AlipayConfig {
|
||||
|
||||
private String appId;
|
||||
private String rsaPrivateKey;
|
||||
private String alipayPublicKey;
|
||||
private String gateway;
|
||||
private String charset;
|
||||
private String format;
|
||||
private String logPath;
|
||||
private String signtype;
|
||||
|
||||
public String getAppId() {
|
||||
return appId;
|
||||
}
|
||||
|
||||
public AlipayConfig setAppId(String appId) {
|
||||
this.appId = appId;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getRsaPrivateKey() {
|
||||
return rsaPrivateKey;
|
||||
}
|
||||
|
||||
public AlipayConfig setRsaPrivateKey(String rsaPrivateKey) {
|
||||
this.rsaPrivateKey = rsaPrivateKey;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getAlipayPublicKey() {
|
||||
return alipayPublicKey;
|
||||
}
|
||||
|
||||
public AlipayConfig setAlipayPublicKey(String alipayPublicKey) {
|
||||
this.alipayPublicKey = alipayPublicKey;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getGateway() {
|
||||
return gateway;
|
||||
}
|
||||
|
||||
public AlipayConfig setGateway(String gateway) {
|
||||
this.gateway = gateway;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getCharset() {
|
||||
return charset;
|
||||
}
|
||||
|
||||
public AlipayConfig setCharset(String charset) {
|
||||
this.charset = charset;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getFormat() {
|
||||
return format;
|
||||
}
|
||||
|
||||
public AlipayConfig setFormat(String format) {
|
||||
this.format = format;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getLogPath() {
|
||||
return logPath;
|
||||
}
|
||||
|
||||
public AlipayConfig setLogPath(String logPath) {
|
||||
this.logPath = logPath;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getSigntype() {
|
||||
return signtype;
|
||||
}
|
||||
|
||||
public AlipayConfig setSigntype(String signtype) {
|
||||
this.signtype = signtype;
|
||||
return this;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue