package com.oying.modules.security.config;
|
|
import lombok.Getter;
|
import lombok.Setter;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.context.annotation.Configuration;
|
|
/**
|
* @author xin
|
* @description
|
* @date 2025/1/22 下午4:49
|
*/
|
@Getter
|
@Setter
|
@Configuration
|
@ConfigurationProperties(prefix = "swift-pass")
|
public class SwiftPassProperties {
|
// 交易密钥1
|
private String key;
|
// 交易密钥2
|
private String key2;
|
// 平台私钥
|
private String mchPrivateKey;
|
// 平台公钥
|
private String platPublicKey;
|
// 门店编号1
|
private String mchId;
|
// 门店编号2
|
private String mchId2;
|
// 签名方式
|
private String signType;
|
// 原生JS
|
private String isRaw;
|
// 是否小程序支付
|
private String isMinipg;
|
// 请求url
|
private String reqUrl;
|
// 支付通知地址
|
private String notifyUrl;
|
// 退款通知地址
|
private String refundUrl;
|
}
|