2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
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
package com.landtool.lanbase.modules.res.entity;
 
public class GraphicStyle {
    private String type; //图形样式
 
    private String displayMode;//显示模式
 
    private String classfield; //类别字段
 
    private String  ValueField; //值字段
 
    private String StatisticalMethod; //统计方式
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getDisplayMode() {
        return displayMode;
    }
 
    public void setDisplayMode(String displayMode) {
        this.displayMode = displayMode;
    }
 
    public String getClassfield() {
        return classfield;
    }
 
    public void setClassfield(String classfield) {
        this.classfield = classfield;
    }
 
    public String getValueField() {
        return ValueField;
    }
 
    public void setValueField(String valueField) {
        ValueField = valueField;
    }
 
    public String getStatisticalMethod() {
        return StatisticalMethod;
    }
 
    public void setStatisticalMethod(String statisticalMethod) {
        StatisticalMethod = statisticalMethod;
    }
}