IT-KIMI_SHI\SINOIT.KIMI
2018-12-07 50eb1d766c470dc6ff927199eaee934f972a8b70
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*************************************************************************
 * Copyright (C) Unpublished JiuDaoTech Software, Inc. All rights reserved.
 * JiuDaoTech Software, Inc., Confidential and Proprietary.
 * <p>
 * This software is subject to copyright protection
 * under the laws of the Public of China and other countries.
 * <p>
 * Unless otherwise explicitly stated, this software is provided
 * by JiuDaoTech "AS IS".
 *************************************************************************/
package model.chart;
 
import java.util.List;
 
/**
 * 图表构建模型
 *
 * @author CSJ
 */
public class BuilderModel {
 
    // 列模型
    private List<String> xAxis;
    // 行模型
    private List<String> yAxis;
    // 标记模型
    private Mark mark;
    // 过滤项模型
    private List<String> filter;
    // table过滤模型
    private List<FilterModel> filterModels;
 
    private boolean filterOrNo;
 
    public List<String> getxAxis() {
        return xAxis;
    }
 
    public void setxAxis(List<String> xAxis) {
        this.xAxis = xAxis;
    }
 
    public List<String> getyAxis() {
        return yAxis;
    }
 
    public void setyAxis(List<String> yAxis) {
        this.yAxis = yAxis;
    }
 
    public Mark getMark() {
        return mark;
    }
 
    public void setMark(Mark mark) {
        this.mark = mark;
    }
 
    public List<String> getFilter() {
        return filter;
    }
 
    public void setFilter(List<String> filter) {
        this.filter = filter;
    }
 
    public List<FilterModel> getFilterModels() {
        return filterModels;
    }
 
    public void setFilterModels(List<FilterModel> filterModels) {
        this.filterModels = filterModels;
    }
 
    public boolean isFilterOrNo() {
        return filterOrNo;
    }
 
    public void setFilterOrNo(boolean filterOrNo) {
        this.filterOrNo = filterOrNo;
    }
 
    /**
     * 标记模块
     */
    public static class Mark {
        private String color;
        private String angle;
        private String tag;
 
        public String getColor() {
            return color;
        }
 
        public void setColor(String color) {
            this.color = color;
        }
 
        public String getAngle() {
            return angle;
        }
 
        public Mark setAngle(String angle) {
            this.angle = angle;
            return this;
        }
 
        public String getTag() {
            return tag;
        }
 
        public void setTag(String tag) {
            this.tag = tag;
        }
    }
 
}