yujian
2019-10-16 a3e1aec60d2f886b8c48966c889b567719d0c5ea
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
package org.yeshi.utils.entity.wx;
 
public class WXAPPInfo {
    private String appId;
    private String appSecret;
    private String mchId;
 
    public WXAPPInfo(String appId, String appSecret, String mchId, String mchKey) {
        this.appId = appId;
        this.appSecret = appSecret;
        this.mchId = mchId;
        this.mchKey = mchKey;
    }
 
    public WXAPPInfo() {
 
    }
 
    private String mchKey;
 
    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;
    }
 
}