All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.elkan1788.mpsdk4j.vo.api.FollowList Maven / Gradle / Ivy

package io.github.elkan1788.mpsdk4j.vo.api;

import java.util.ArrayList;
import java.util.List;

import org.nutz.json.JsonField;

/**
 * 关注者列表
 *
 * @author 凡梦星尘([email protected])
 * @since 2.0
 */
public class FollowList {
    /**
     * 关注该公众账号的总用户数
     */
    private int total;
    /**
     * 拉取的OPENID个数,最大值为10000
     */
    private int count;
    /**
     * 列表数据,OPENID的列表
     */
    private List openIds = new ArrayList();
    /**
     * 拉取列表的后一个用户的OPENID
     */
    @JsonField(value = "next_openid")
    private 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;
    }

    @Override
    public String toString() {
        return "FollowList [total="
               + total
               + ", count="
               + count
               + ", openIds="
               + openIds
               + ", nextOpenId="
               + nextOpenId
               + "]";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy