File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/device Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 6
6
/**
7
7
* Created by keungtung on 10/12/2016.
8
8
*/
9
- public class WxDeviceQrCodeResult extends AbstractDeviceBean {
9
+ public class WxDeviceQrCodeResult extends AbstractDeviceBean {
10
10
@ SerializedName ("deviceid" )
11
11
private String deviceId ;
12
12
@ SerializedName ("qrticket" )
13
13
private String qrTicket ;
14
14
@ SerializedName ("devicelicence" )
15
15
private String deviceLicence ;
16
- @ SerializedName ("resp_msg " )
17
- private RespMsg respMsg ;
16
+ @ SerializedName ("base_resp " )
17
+ private BaseResp baseResp ;
18
18
19
19
public static WxDeviceQrCodeResult fromJson (String json ) {
20
20
return WxMpGsonBuilder .INSTANCE .create ().fromJson (json , WxDeviceQrCodeResult .class );
@@ -28,12 +28,12 @@ public void setDeviceLicence(String deviceLicence) {
28
28
this .deviceLicence = deviceLicence ;
29
29
}
30
30
31
- public RespMsg getRespMsg () {
32
- return respMsg ;
31
+ public BaseResp getBaseResp () {
32
+ return baseResp ;
33
33
}
34
34
35
- public void setRespMsg ( RespMsg respMsg ) {
36
- this .respMsg = respMsg ;
35
+ public void setBaseResp ( BaseResp baseResp ) {
36
+ this .baseResp = baseResp ;
37
37
}
38
38
39
39
public String getDeviceId () {
You can’t perform that action at this time.
0 commit comments