Skip to content
Prev Previous commit
Next Next commit
fix
  • Loading branch information
007gzs committed Nov 13, 2017
commit f3f35adb6f64b0d6c3f97dfd49e6b576c00e2ada
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
public class WxMpDeviceIdentifier implements Serializable {
private Integer device_id;
private String uuid;
private Integer page_id;
private Integer major;
private Integer minor;
public JsonObject toJsonObject(){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
import com.google.gson.JsonObject;
import lombok.Data;

import java.util.List;
import java.util.Collection;

@Data
public class WxMpShakeAroundDeviceBindPageQuery {
private WxMpDeviceIdentifier deviceIdentifier;
private List<Integer> pageIds;
private Collection<Integer> pageIds;
public String toJsonString(){
JsonObject jsonObject = new JsonObject();
jsonObject.add("device_identifier", deviceIdentifier.toJsonObject());
Expand Down