package com.casic.smarttube.model; import com.github.mikephil.charting.data.Entry; import java.util.List; public class LineChartEntryModel { //折线数据 private List<Entry> entryList; //折线颜色 private List<Integer> lineColors; public List<Entry> getEntryList() { return entryList; } public void setEntryList(List<Entry> entryList) { this.entryList = entryList; } public List<Integer> getLineColors() { return lineColors; } public void setLineColors(List<Integer> lineColors) { this.lineColors = lineColors; } }