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

com.riversoft.weixin.mp.user.bean.UserPagination Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package com.riversoft.weixin.mp.user.bean;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

/**
 * Created by exizhai on 11/21/2015.
 */
public class UserPagination {

    private int total;
    private int count;

    private Data users;

    @JsonProperty("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 getUsers() {
        return users.getUsers();
    }

    @JsonProperty("data")
    public void setUsers(Data users) {
        this.users = users;
    }

    public String getNextOpenId() {
        return nextOpenId;
    }

    public void setNextOpenId(String nextOpenId) {
        this.nextOpenId = nextOpenId;
    }

    public class Data {

        @JsonProperty("openid")
        private List users;

        public List getUsers() {
            return users;
        }

        public void setUsers(List users) {
            this.users = users;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy