
me.chanjar.weixin.bean.result.WxUserList Maven / Gradle / Ivy
package me.chanjar.weixin.bean.result;
import java.util.ArrayList;
import java.util.List;
import me.chanjar.weixin.util.json.WxGsonBuilder;
/**
* 关注者列表
* @author chanjarster
*
*/
public class WxUserList {
protected int total = -1;
protected int count = -1;
protected List openids = new ArrayList();
protected String next_openid;
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public List getOpenids() {
return openids;
}
public void setOpenids(List openids) {
this.openids = openids;
}
public String getNext_openid() {
return next_openid;
}
public void setNext_openid(String next_openid) {
this.next_openid = next_openid;
}
public static WxUserList fromJson(String json) {
return WxGsonBuilder.INSTANCE.create().fromJson(json, WxUserList.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy