Newer
Older
DownApp / app / src / main / java / me / bell / downapp / bean / YYBBean.java
Bello on 10 Apr 2018 980 bytes init
package me.bell.downapp.bean;

import java.util.ArrayList;

/**
 * @Info 应用宝
 * @Auth Bello
 * @Time 18-4-10 下午5:16
 * @Ver
 */

public class YYBBean {
    private int total;
    private int count;
    private ArrayList<YYBData> obj;
    private boolean success;
    private String msg;

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

    public void setObj(ArrayList<YYBData> 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;
    }
}