Procházet zdrojové kódy

Merge pull request #109 from dracupid/develop

修正微信设备授权接口参数字段缺失
master
Binary Wang před 8 roky
committed by GitHub
rodič
revize
73a226bffe
1 změnil soubory, kde provedl 10 přidání a 0 odebrání
  1. +10
    -0
      weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/device/WxDeviceAuthorize.java

+ 10
- 0
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/device/WxDeviceAuthorize.java Zobrazit soubor

@@ -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<WxDevice> 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<WxDevice> getDeviceList() {
return deviceList;
}


Načítá se…
Zrušit
Uložit