企业在线充值新增支付宝充值
parent
c9c0962dba
commit
eee6fca395
@ -0,0 +1,154 @@
|
|||||||
|
package com.payment.djypaymentplat.config;
|
||||||
|
|
||||||
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description TODO
|
||||||
|
* @Author JHQ
|
||||||
|
* @Date 2023/12/12 15:37
|
||||||
|
*/
|
||||||
|
@Component
|
||||||
|
@ConfigurationProperties(prefix = "alipay",ignoreUnknownFields = false)
|
||||||
|
public class AliPayConfig {
|
||||||
|
/** 支付宝网关 */
|
||||||
|
public String gatewayUrl;
|
||||||
|
|
||||||
|
/** 商家APPID */
|
||||||
|
public String appId;
|
||||||
|
|
||||||
|
/** 商户私钥 */
|
||||||
|
public String merchantPrivateKeyPath;
|
||||||
|
|
||||||
|
/** 字符编码格式 */
|
||||||
|
public String charset;
|
||||||
|
|
||||||
|
/** 签名方式 */
|
||||||
|
public String signType;
|
||||||
|
|
||||||
|
/** 服务器异步通知 */
|
||||||
|
public String noticeUrl;
|
||||||
|
|
||||||
|
/** 大简云回写地址 */
|
||||||
|
public String djyNoticeUrl;
|
||||||
|
|
||||||
|
/** 应用公钥证书路径 */
|
||||||
|
public String appCertPath;
|
||||||
|
|
||||||
|
/** 支付宝公钥证书路径 */
|
||||||
|
public String alipayCertPath;
|
||||||
|
|
||||||
|
/** 支付宝根证书路径 */
|
||||||
|
public String alipayRootCertPath;
|
||||||
|
|
||||||
|
/** 支付宝网关 */
|
||||||
|
|
||||||
|
public void setGatewayUrl(String gatewayUrl) {
|
||||||
|
this.gatewayUrl = gatewayUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 商家APPID */
|
||||||
|
|
||||||
|
public void setAppId(String appId) {
|
||||||
|
this.appId = appId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 商户私钥 */
|
||||||
|
|
||||||
|
public void setMerchantPrivateKeyPath(String merchantPrivateKeyPath) {
|
||||||
|
this.merchantPrivateKeyPath = merchantPrivateKeyPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 字符编码格式 */
|
||||||
|
|
||||||
|
public void setCharset(String charset) {
|
||||||
|
this.charset = charset;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 签名方式 */
|
||||||
|
|
||||||
|
public void setSignType(String signType) {
|
||||||
|
this.signType = signType;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 服务器异步通知 */
|
||||||
|
|
||||||
|
public void setNoticeUrl(String noticeUrl) {
|
||||||
|
this.noticeUrl = noticeUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 大简云回写地址 */
|
||||||
|
|
||||||
|
public void setDjyNoticeUrl(String djyNoticeUrl) {
|
||||||
|
this.djyNoticeUrl = djyNoticeUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 应用公钥证书路径 */
|
||||||
|
|
||||||
|
public void setAppCertPath(String appCertPath) {
|
||||||
|
this.appCertPath = appCertPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 支付宝公钥证书路径 */
|
||||||
|
|
||||||
|
public void setAlipayCertPath(String alipayCertPath) {
|
||||||
|
this.alipayCertPath = alipayCertPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 支付宝根证书路径 */
|
||||||
|
|
||||||
|
public void setAlipayRootCertPath(String alipayRootCertPath) {
|
||||||
|
this.alipayRootCertPath = alipayRootCertPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 支付宝网关 */
|
||||||
|
public String GatewayUrl() {
|
||||||
|
return gatewayUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 商家APPID */
|
||||||
|
public String AppId() {
|
||||||
|
return appId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 商户私钥 */
|
||||||
|
public String MerchantPrivateKeyPath() {
|
||||||
|
return merchantPrivateKeyPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 字符编码格式 */
|
||||||
|
public String CharSet() {
|
||||||
|
return charset;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** 签名方式 */
|
||||||
|
public String SignType() {
|
||||||
|
return signType;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 服务器异步通知 */
|
||||||
|
public String NoticeUrl() {
|
||||||
|
return noticeUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 大简云回写地址 */
|
||||||
|
public String DjyNoticeUrl() {
|
||||||
|
return djyNoticeUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 应用公钥证书路径 */
|
||||||
|
public String AppCertPath() {
|
||||||
|
return appCertPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 支付宝公钥证书路径 */
|
||||||
|
public String AlipayCertPath() {
|
||||||
|
return alipayCertPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 支付宝根证书路径 */
|
||||||
|
public String AlipayRootCertPath() {
|
||||||
|
return alipayRootCertPath;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue