package com.matrix.system.hive.pojo;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
public class ReportForm {
|
/**
|
* 统计表标题 title - text值
|
*/
|
String title;
|
String[] colors={"1","2","300","4","5"};
|
/**
|
* 统计表数据类型分类 legend值
|
*/
|
List<String> dataName=new ArrayList<String>();
|
/**
|
* 统计X坐标对应值
|
* xAxis 值
|
*/
|
List<String> dataValueName=new ArrayList<String>();
|
/**
|
* series 值
|
* 统计数据
|
*/
|
List<ReportValue> dataValues=new ArrayList<ReportValue>();
|
public String getTitle() {
|
return title;
|
}
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
public List<String> getDataName() {
|
return dataName;
|
}
|
public void setDataName(List<String> dataName) {
|
this.dataName = dataName;
|
}
|
public List<String> getDataValueName() {
|
return dataValueName;
|
}
|
public void setDataValueName(List<String> dataValueName) {
|
this.dataValueName = dataValueName;
|
}
|
public List<ReportValue> getDataValues() {
|
return dataValues;
|
}
|
public void setDataValues(List<ReportValue> dataValues) {
|
this.dataValues = dataValues;
|
}
|
public String[] getColors() {
|
return colors;
|
}
|
public void setColors(String[] colors) {
|
this.colors = colors;
|
}
|
|
|
|
}
|