admin
2022-04-07 211840b64fa1132d76d6dff6c779e9ba2c0c450f
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package org.yeshi.utils.entity.wx;
 
public class WXAPPInfo {
    private String appId;
    private String appSecret;
    private String mchId;
    private String mchKey;
 
 
    /**
     * V3接口新增字段
     */
    //证书序列号
    private String mchSerialNo;
    //证书私钥
    private String privateKey;
    private String apiV3Key;
 
 
    public WXAPPInfo(String appId, String appSecret, String mchId, String mchKey) {
        this.appId = appId;
        this.appSecret = appSecret;
        this.mchId = mchId;
        this.mchKey = mchKey;
    }
 
    public WXAPPInfo(String appId, String mchId, String mchSerialNo, String privateKey, String apiV3Key) {
        this.appId = appId;
        this.mchId = mchId;
        this.mchSerialNo = mchSerialNo;
        this.privateKey = privateKey;
        this.apiV3Key = apiV3Key;
    }
 
 
    public WXAPPInfo() {
 
    }
 
 
    public String getMchSerialNo() {
        return mchSerialNo;
    }
 
    public void setMchSerialNo(String mchSerialNo) {
        this.mchSerialNo = mchSerialNo;
    }
 
    public String getPrivateKey() {
        return privateKey;
    }
 
    public void setPrivateKey(String privateKey) {
        this.privateKey = privateKey;
    }
 
    public String getApiV3Key() {
        return apiV3Key;
    }
 
    public void setApiV3Key(String apiV3Key) {
        this.apiV3Key = apiV3Key;
    }
 
    public String getAppId() {
        return appId;
    }
 
    public void setAppId(String appId) {
        this.appId = appId;
    }
 
    public String getAppSecret() {
        return appSecret;
    }
 
    public void setAppSecret(String appSecret) {
        this.appSecret = appSecret;
    }
 
    public String getMchId() {
        return mchId;
    }
 
    public void setMchId(String mchId) {
        this.mchId = mchId;
    }
 
    public String getMchKey() {
        return mchKey;
    }
 
    public void setMchKey(String mchKey) {
        this.mchKey = mchKey;
    }
 
}