Skip to content

Commit 561da62

Browse files
committed
🐛 #1540 修复WxDeviceBindDeviceResult类里的Device内部类为public
1 parent a907938 commit 561da62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/device/WxDeviceBindDeviceResult.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ public static WxDeviceBindDeviceResult fromJson(String json) {
2828
}
2929

3030
@Data
31-
private class Device {
31+
public static class Device {
3232
@SerializedName("device_type")
3333
private String deviceType;
34+
3435
@SerializedName("device_id")
3536
private String deviceId;
36-
3737
}
3838

3939
}

0 commit comments

Comments
 (0)