Newer
Older
MpAndroidChart / MPChartExample / src / com / xxmassdeveloper / mpchartexample / manage / RadarData.java
bello on 5 Mar 2018 1 KB Radar
package com.xxmassdeveloper.mpchartexample.manage;

/**
 * @Info
 * @Auth Bello
 * @Time 18/3/5 上午12:02
 * @Ver
 */

public class RadarData {
    /**
     * thisAvg : 4.87
     * name : 保亭
     * lastAvg : 4.7
     * sumPeople : 1262
     * lastPeople : 800
     */

    private float thisAvg;
    private String name;
    private float lastAvg;
    private int sumPeople;
    private int lastPeople;

    public float getThisAvg() {
        return thisAvg;
    }

    public void setThisAvg(float thisAvg) {
        this.thisAvg = thisAvg;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public float getLastAvg() {
        return lastAvg;
    }

    public void setLastAvg(float lastAvg) {
        this.lastAvg = lastAvg;
    }

    public int getSumPeople() {
        return sumPeople;
    }

    public void setSumPeople(int sumPeople) {
        this.sumPeople = sumPeople;
    }

    public int getLastPeople() {
        return lastPeople;
    }

    public void setLastPeople(int lastPeople) {
        this.lastPeople = lastPeople;
    }
}