Newer
Older
MpAndroidChart / MPChartExample / src / com / xxmassdeveloper / mpchartexample / manage / DataBean.java
Bello on 7 Feb 2018 879 bytes init
package com.xxmassdeveloper.mpchartexample.manage;

import java.io.Serializable;

/**
 * @Info
 * @Auth Bello
 * @Time 18-2-7 下午1:55
 * @Ver
 */

public class DataBean implements Serializable {
    /**
     * b : 30
     * t : 15
     * plasmaName : 保亭
     * tb : 100.00
     */

    private int b;
    private int t;
    private String plasmaName;
    private String tb;

    public int getB() {
        return b;
    }

    public void setB(int b) {
        this.b = b;
    }

    public int getT() {
        return t;
    }

    public void setT(int t) {
        this.t = t;
    }

    public String getPlasmaName() {
        return plasmaName;
    }

    public void setPlasmaName(String plasmaName) {
        this.plasmaName = plasmaName;
    }

    public String getTb() {
        return tb;
    }

    public void setTb(String tb) {
        this.tb = tb;
    }
}