admin
2019-09-12 155913b57ad50126240bc3d5c1aef6ebfe12e3cf
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 com.yeshi.fanli.dto.wx;
 
public class WXAccountInfoDTO {
    // 公众号
    private String gzAppId;
    private String gzAppSecret;
    // APP
    private String appId;
    private String appSecret;
 
    public WXAccountInfoDTO(String gzAppId, String gzAppSecret, String appId, String appSecret) {
        this.gzAppId = gzAppId;
        this.gzAppSecret = gzAppSecret;
        this.appId = appId;
        this.appSecret = appSecret;
    }
    
    public WXAccountInfoDTO() {
    }
 
    public String getGzAppId() {
        return gzAppId;
    }
 
    public void setGzAppId(String gzAppId) {
        this.gzAppId = gzAppId;
    }
 
    public String getGzAppSecret() {
        return gzAppSecret;
    }
 
    public void setGzAppSecret(String gzAppSecret) {
        this.gzAppSecret = gzAppSecret;
    }
 
    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;
    }
 
}