shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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 com.ishop.model.response;
 
import java.io.Serializable;
import java.util.List;
 
public class WeChatJsSdkConfigResponse implements Serializable {
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public String getNonceStr() {
        return nonceStr;
    }
 
    public void setNonceStr(String nonceStr) {
        this.nonceStr = nonceStr;
    }
 
    public Long getTimestamp() {
        return timestamp;
    }
 
    public void setTimestamp(Long timestamp) {
        this.timestamp = timestamp;
    }
 
    public String getSignature() {
        return signature;
    }
 
    public void setSignature(String signature) {
        this.signature = signature;
    }
 
    public List<String> getJsApiList() {
        return jsApiList;
    }
 
    public void setJsApiList(List<String> jsApiList) {
        this.jsApiList = jsApiList;
    }
 
    public Boolean getDebug() {
        return debug;
    }
 
    public void setDebug(Boolean debug) {
        this.debug = debug;
    }
 
    public String getAppId() {
        return appId;
    }
 
    public void setAppId(String appId) {
        this.appId = appId;
    }
 
    //    @ApiModelProperty(value = "url")
    private String url;
 
//    @ApiModelProperty(value = "生成签名的随机串")
    private String nonceStr;
 
//    @ApiModelProperty(value = "生成签名的时间戳")
    private Long timestamp;
 
//    @ApiModelProperty(value = "签名")
    private String signature;
 
//    @ApiModelProperty(value = "需要使用的 JS 接口列表")
    private List<String> jsApiList;
 
//    @ApiModelProperty(value = "开启调试模式,调用的所有 api 的返回值会在客户端 alert 出来,若要查看传入的参数,可以在 pc 端打开,参数信息会通过 log 打出,仅在 pc 端时才会打印。")
    private Boolean debug;
 
//    @ApiModelProperty(value = "公众号的唯一标识")
    private String appId;
 
    @Override
    public String toString() {
        return "WeChatJsSdkConfigResponse{" +
                "url='" + url + '\'' +
                ", nonceStr='" + nonceStr + '\'' +
                ", timestamp=" + timestamp +
                ", signature='" + signature + '\'' +
                ", jsApiList=" + jsApiList +
                ", debug=" + debug +
                ", appId='" + appId + '\'' +
                '}';
    }
}