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
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
package com.landtool.lanbase.modules.res.entity.ViewModels;
 
import java.util.List;
 
public class TuChengView {
    public String layerName;
    
    public String layerIndex;
    
    public String defineExpression;
    
    public Boolean visible;
    
    public String xmlPopInfo;
    
    public String popupShowStyle;
    
    public Integer ziYuanID;//新增字段
    
    public String qiPaoLuJingUrl;
    
    public List<TuChengView> subLayers;
    
    public String getLayerName() {
        return layerName;
    }
    
    public void setLayerName(String layerName) {
        this.layerName = layerName;
    }
    
    public String getLayerIndex() {
        return layerIndex;
    }
    
    public void setLayerIndex(String layerIndex) {
        this.layerIndex = layerIndex;
    }
    
    public String getDefineExpression() {
        return defineExpression;
    }
    
    public void setDefineExpression(String defineExpression) {
        this.defineExpression = defineExpression;
    }
    
    public Boolean getVisible() {
        return visible;
    }
    
    public void setVisible(Boolean visible) {
        this.visible = visible;
    }
    
    public String getXmlPopInfo() {
        return xmlPopInfo;
    }
    
    public void setXmlPopInfo(String xmlPopInfo) {
        this.xmlPopInfo = xmlPopInfo;
    }
    
    public String getPopupShowStyle() {
        return popupShowStyle;
    }
    
    public void setPopupShowStyle(String popupShowStyle) {
        this.popupShowStyle = popupShowStyle;
    }
    
    public Integer getZiYuanID() {
        return ziYuanID;
    }
    
    public void setZiYuanID(Integer ziYuanID) {
        this.ziYuanID = ziYuanID;
    }
    
    public String getQiPaoLuJingUrl() {
        return qiPaoLuJingUrl;
    }
    
    public void setQiPaoLuJingUrl(String qiPaoLuJingUrl) {
        this.qiPaoLuJingUrl = qiPaoLuJingUrl;
    }
    
    public List<TuChengView> getSubLayers() {
        return subLayers;
    }
    
    public void setSubLayers(List<TuChengView> subLayers) {
        this.subLayers = subLayers;
    }
}