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
package model.chart;
 
/**
 * Created by 10562 on 2017/3/10.
 */
public class FilterModel {
    //过滤字段
    private String column;
 
    //过滤字段类型
    private String columnType;
 
    //维度过滤值
    private String[] value;
 
    //度量过滤最小值
    private Integer min;
 
    //度量过滤最大值
    private Integer max;
 
    public String getColumn() {
        return column;
    }
 
    public void setColumn(String column) {
        this.column = column;
    }
 
    public String getColumnType() {
        return columnType;
    }
 
    public void setColumnType(String columnType) {
        this.columnType = columnType;
    }
 
    public String[] getValue() {
        return value;
    }
 
    public void setValue(String[] value) {
        this.value = value;
    }
 
    public Integer getMin() {
        return min;
    }
 
    public void setMin(Integer min) {
        this.min = min;
    }
 
    public Integer getMax() {
        return max;
    }
 
    public void setMax(Integer max) {
        this.max = max;
    }
}