From cb6712065dca1b8817584a5f797732bd04acf14f Mon Sep 17 00:00:00 2001 From: Zhao Jingchen Date: Mon, 26 Dec 2016 19:27:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E5=BE=AE=E4=BF=A1=E8=AE=BE?= =?UTF-8?q?=E5=A4=87=E6=8E=88=E6=9D=83=E6=8E=A5=E5=8F=A3=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E7=BC=BA=E5=A4=B1=20=E5=8F=82=E8=A7=81=20htt?= =?UTF-8?q?p://iot.weixin.qq.com/wiki/new/index.html=3Fpage=3D3-4-5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../weixin/mp/bean/device/WxDeviceAuthorize.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/device/WxDeviceAuthorize.java b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/device/WxDeviceAuthorize.java index a37a8a420..0318754e5 100644 --- a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/device/WxDeviceAuthorize.java +++ b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/device/WxDeviceAuthorize.java @@ -14,6 +14,8 @@ public class WxDeviceAuthorize extends AbstractDeviceBean { private String deviceNum; @SerializedName("op_type") private String opType; + @SerializedName("product_id") + private String productId; @SerializedName("device_list") private List deviceList = new LinkedList<>(); @@ -33,6 +35,14 @@ public class WxDeviceAuthorize extends AbstractDeviceBean { this.opType = opType; } + public String getProductId() { + return productId; + } + + public void setProductId(String productId) { + this.productId = productId; + } + public List getDeviceList() { return deviceList; }