File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed
weixin-java-common/src/main/java/me/chanjar/weixin/common/bean Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change 8
8
public class WxJsapiSignature implements Serializable {
9
9
private static final long serialVersionUID = -1116808193154384804L ;
10
10
11
- private String appid ;
11
+ private String appId ;
12
12
13
- private String noncestr ;
13
+ private String nonceStr ;
14
14
15
15
private long timestamp ;
16
16
@@ -26,12 +26,12 @@ public void setSignature(String signature) {
26
26
this .signature = signature ;
27
27
}
28
28
29
- public String getNoncestr () {
30
- return this . noncestr ;
29
+ public String getNonceStr () {
30
+ return nonceStr ;
31
31
}
32
32
33
- public void setNoncestr (String noncestr ) {
34
- this .noncestr = noncestr ;
33
+ public void setNonceStr (String nonceStr ) {
34
+ this .nonceStr = nonceStr ;
35
35
}
36
36
37
37
public long getTimestamp () {
@@ -50,12 +50,11 @@ public void setUrl(String url) {
50
50
this .url = url ;
51
51
}
52
52
53
- public String getAppid () {
54
- return this . appid ;
53
+ public String getAppId () {
54
+ return appId ;
55
55
}
56
56
57
- public void setAppid (String appid ) {
58
- this .appid = appid ;
57
+ public void setAppId (String appId ) {
58
+ this .appId = appId ;
59
59
}
60
-
61
60
}
You can’t perform that action at this time.
0 commit comments