shikeying
2024-01-11 3b67e947e36133e2a40eb2737b15ea375e157ea0
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.walker.pay.payunk.param;
 
/**
 * 畅联对应的 pay 字段信息。
 * @date 2023-10-25
 */
public class AlipayReplace {
 
    public String getAppid() {
        return appid;
    }
 
    public void setAppid(String appid) {
        this.appid = appid;
    }
 
    public String getRsa_private_key() {
        return rsa_private_key;
    }
 
    public void setRsa_private_key(String rsa_private_key) {
        this.rsa_private_key = rsa_private_key;
    }
 
    public String getApp_cert_path() {
        return app_cert_path;
    }
 
    public void setApp_cert_path(String app_cert_path) {
        this.app_cert_path = app_cert_path;
    }
 
    public String getAlipay_cert_path() {
        return alipay_cert_path;
    }
 
    public void setAlipay_cert_path(String alipay_cert_path) {
        this.alipay_cert_path = alipay_cert_path;
    }
 
    public String getAlipay_root_cert_path() {
        return alipay_root_cert_path;
    }
 
    public void setAlipay_root_cert_path(String alipay_root_cert_path) {
        this.alipay_root_cert_path = alipay_root_cert_path;
    }
 
    private String appid;           // 支付宝应用appid
    private String rsa_private_key; // 支付宝私钥
    private String app_cert_path;   // 应用公钥证书
    private String alipay_cert_path;// 支付宝公钥证书
    private String alipay_root_cert_path;   // 支付宝根证书
 
    @Override
    public String toString() {
        return "AlipayReplace{" +
                "appid='" + appid + '\'' +
                ", rsa_private_key='" + rsa_private_key + '\'' +
                ", app_cert_path='" + app_cert_path + '\'' +
                ", alipay_cert_path='" + alipay_cert_path + '\'' +
                ", alipay_root_cert_path='" + alipay_root_cert_path + '\'' +
                '}';
    }
}