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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package com.landtool.lanbase.modules.res.entity;
 
 
 
import java.util.Date;
 
public class Res_Theme_Module {
    private Integer moduleid;
    
    private Integer panelresid;
    
    private Integer mapresid;
    
    private String title;
    
    private Integer diyuserid;
    
    private Date diytime;
    
    private String panelurl;
    
    //已选择id
    private String selectids;
    
    private Integer clusterstyle;
    
    private String serviceconfig;
    
    private String maptitle;
    
    private Integer isclickchartfilter;
    
    private Integer ismaplinkage;
 
    private String associationlayer;
 
    private Double echartsheight;
 
    private Integer thememapid;
 
    private String fitbrowser;
 
    private int isIE;
 
    private int isGoogle;
 
    private int isFirefox;
 
    public String getFitbrowser() {
        return fitbrowser;
    }
 
    public void setFitbrowser(String fitbrowser) {
        this.fitbrowser = fitbrowser;
    }
 
    public int getIsIE() {
        return isIE;
    }
 
    public void setIsIE(int isIE) {
        this.isIE = isIE;
    }
 
    public int getIsGoogle() {
        return isGoogle;
    }
 
    public void setIsGoogle(int isGoogle) {
        this.isGoogle = isGoogle;
    }
 
    public int getIsFirefox() {
        return isFirefox;
    }
 
    public void setIsFirefox(int isFirefox) {
        this.isFirefox = isFirefox;
    }
 
    public Integer getClusterstyle() {
        return clusterstyle;
    }
    
    public void setClusterstyle(Integer clusterstyle) {
        this.clusterstyle = clusterstyle;
    }
    
    public Integer getModuleid() {
        return moduleid;
    }
    
    public void setModuleid(Integer moduleid) {
        this.moduleid = moduleid;
    }
    
    public Integer getPanelresid() {
        return panelresid;
    }
    
    public void setPanelresid(Integer panelresid) {
        this.panelresid = panelresid;
    }
    
    public Integer getMapresid() {
        return mapresid;
    }
    
    public void setMapresid(Integer mapresid) {
        this.mapresid = mapresid;
    }
    
    public String getTitle() {
        return title;
    }
    
    public void setTitle(String title) {
        this.title = title == null ? null : title.trim();
    }
    
    public Integer getDiyuserid() {
        return diyuserid;
    }
    
    public void setDiyuserid(Integer diyuserid) {
        this.diyuserid = diyuserid;
    }
    
    public Date getDiytime() {
        return diytime;
    }
    
    public void setDiytime(Date diytime) {
        this.diytime = diytime;
    }
    
    public String getSelectids() {
        return selectids;
    }
    
    public void setSelectids(String selectids) {
        this.selectids = selectids;
    }
    
    public String getPanelurl() {
        return panelurl;
    }
    
    public void setPanelurl(String panelurl) {
        this.panelurl = panelurl;
    }
    
    public String getServiceconfig() {return serviceconfig;}
    
    public void setServiceconfig(String serviceconfig) {this.serviceconfig = serviceconfig;}
    
    public String getMaptitle() {return maptitle;}
    
    public void setMaptitle(String maptitle) {this.maptitle = maptitle;}
    
    public Integer getIsclickchartfilter() {
        return isclickchartfilter;
    }
    
    public void setIsclickchartfilter(Integer isclickchartfilter) {
        this.isclickchartfilter = isclickchartfilter;
    }
    
    public Integer getIsmaplinkage() {
        return ismaplinkage;
    }
    
    public void setIsmaplinkage(Integer ismaplinkage) {
        this.ismaplinkage = ismaplinkage;
    }
 
    public String getAssociationlayer() {
        return associationlayer;
    }
 
    public void setAssociationlayer(String associationlayer) {
        this.associationlayer = associationlayer;
    }
 
    public Double getEchartsheight() {
        return echartsheight;
    }
 
    public void setEchartsheight(Double echartsheight) {
        this.echartsheight = echartsheight;
    }
 
    public Integer getThememapid() {
        return thememapid;
    }
 
    public void setThememapid(Integer thememapid) {
        this.thememapid = thememapid;
    }
}