Newer
Older
DownApp / app / src / main / java / me / bell / downapp / bean / SearchBean.java
package me.bell.downapp.bean;

/**
 * @Info 搜索结果
 * @Auth Bello
 * @Time 18-4-11 下午6:37
 * @Ver
 */

public class SearchBean {
    private int total;
    private int count;
    private SearchObj obj;
    private boolean success;
    private String msg;
    private String pageContext;

    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 SearchObj getObj() {
        return obj;
    }

    public void setObj(SearchObj obj) {
        this.obj = obj;
    }

    public boolean isSuccess() {
        return success;
    }

    public void setSuccess(boolean success) {
        this.success = success;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    public String getPageContext() {
        return pageContext;
    }

    public void setPageContext(String pageContext) {
        this.pageContext = pageContext;
    }
}