xin
2025-05-30 347909bae241fff128b628ea6d12992d7e5b4b10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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;
    // 平台私钥
    private String mchPrivateKey;
    // 平台公钥
    private String platPublicKey;
    // 门店编号1
    private String mchId;
    // 签名方式
    private String signType;
    // 原生JS
    private String isRaw;
    // 是否小程序支付
    private String isMinipg;
    // AppID
    private String appId;
    // 请求url
    private String reqUrl;
    // 支付通知地址
    private String notifyUrl;
    // 退款通知地址
    private String refundUrl;
}