Helius
2021-03-12 62bf99d419e470f5556f21682d0d8ee8b9e20412
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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;
    }
    
     
     
}