admin
2022-05-19 56364722d3ed70d48ec41f567a4e59e5ccbbb868
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
package com.ks.app.dto.config;
 
import org.yeshi.utils.annotation.Map;
 
public class WXTransferConfig {
    @Map("mchId")
    private String mchId;
    @Map("key")
    private String key;
    @Map("certPwd")
    private String certPwd;
    @Map("certPath")
    private String certPath;
 
    public String getMchId() {
        return mchId;
    }
 
    public void setMchId(String mchId) {
        this.mchId = mchId;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public String getCertPwd() {
        return certPwd;
    }
 
    public void setCertPwd(String certPwd) {
        this.certPwd = certPwd;
    }
 
    public String getCertPath() {
        return certPath;
    }
 
    public void setCertPath(String certPath) {
        this.certPath = certPath;
    }
}