me.chanjar.weixin.mp.bean.result.WxMpUserList Maven / Gradle / Ivy
package me.chanjar.weixin.mp.bean.result;
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;
import java.util.ArrayList;
import java.util.List;
/**
* 关注者列表
* @author chanjarster
*
*/
public class WxMpUserList {
protected int total = -1;
protected int count = -1;
protected List openIds = new ArrayList();
protected String nextOpenId;
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 getNextOpenId() {
return nextOpenId;
}
public void setNextOpenId(String nextOpenId) {
this.nextOpenId = nextOpenId;
}
public static WxMpUserList fromJson(String json) {
return WxMpGsonBuilder.INSTANCE.create().fromJson(json, WxMpUserList.class);
}
@Override
public String toString() {
return WxMpGsonBuilder.INSTANCE.create().toJson(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy