zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
package org.jeecg.modules.lims.config;
 
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
@Configuration
@ConfigurationProperties(prefix = "wx")
public class WxProperties {
 
    private String appId;
 
    private String appSecret;
 
    private String mchId;
 
    private String mchKey;
 
    private String notifyUrl;
 
    private String keyPath;
 
    private String token;
 
    private String aesKey;
 
    public String getToken() {
        return token;
    }
 
    public void setToken(String token) {
        this.token = token;
    }
 
    public String getAesKey() {
        return aesKey;
    }
 
    public void setAesKey(String aesKey) {
        this.aesKey = aesKey;
    }
 
    public String getNotifyUrl() {
        return notifyUrl;
    }
 
    public void setNotifyUrl(String notifyUrl) {
        this.notifyUrl = notifyUrl;
    }
 
    public String getMchKey() {
        return mchKey;
    }
 
    public void setMchKey(String mchKey) {
        this.mchKey = mchKey;
    }
 
    public String getAppId() {
        return this.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 getKeyPath() {
        return keyPath;
    }
 
    public void setKeyPath(String keyPath) {
        this.keyPath = keyPath;
    }
}