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
package com.landtool.lanbase.modules.res.entity;
 
 
public class Res_ExtThemeMap {
 
  private Integer resourceid;
  private String publishsoft;
  private String layername;
  private String portalguid;
  private String legendurl;
  private String sublayerset;
  private Integer defaultlayerset;
  private Double initxmin;
  private Double initxmax;
  private Double initymin;
  private Double initymax;
  private Double fullxmin;
  private Double fullxmax;
  private Double fullymin;
  private Double fullymax;
  private String type;
  private String mapjson;
 
 
  public Integer getResourceid() {
    return resourceid;
  }
 
  public void setResourceid(Integer resourceid) {
    this.resourceid = resourceid;
  }
 
 
  public String getPublishsoft() {
    return publishsoft;
  }
 
  public void setPublishsoft(String publishsoft) {
    this.publishsoft = publishsoft;
  }
 
 
  public String getLayername() {
    return layername;
  }
 
  public void setLayername(String layername) {
    this.layername = layername;
  }
 
 
  public String getPortalguid() {
    return portalguid;
  }
 
  public void setPortalguid(String portalguid) {
    this.portalguid = portalguid;
  }
 
 
  public String getLegendurl() {
    return legendurl;
  }
 
  public void setLegendurl(String legendurl) {
    this.legendurl = legendurl;
  }
 
 
  public String getSublayerset() {
    return sublayerset;
  }
 
  public void setSublayerset(String sublayerset) {
    this.sublayerset = sublayerset;
  }
 
 
  public Integer getDefaultlayerset() {
    return defaultlayerset;
  }
 
  public void setDefaultlayerset(Integer defaultlayerset) {
    this.defaultlayerset = defaultlayerset;
  }
 
 
  public Double getInitxmin() {
    return initxmin;
  }
 
  public void setInitxmin(Double initxmin) {
    this.initxmin = initxmin;
  }
 
 
  public Double getInitxmax() {
    return initxmax;
  }
 
  public void setInitxmax(Double initxmax) {
    this.initxmax = initxmax;
  }
 
 
  public Double getInitymin() {
    return initymin;
  }
 
  public void setInitymin(Double initymin) {
    this.initymin = initymin;
  }
 
 
  public Double getInitymax() {
    return initymax;
  }
 
  public void setInitymax(Double initymax) {
    this.initymax = initymax;
  }
 
 
  public Double getFullxmin() {
    return fullxmin;
  }
 
  public void setFullxmin(Double fullxmin) {
    this.fullxmin = fullxmin;
  }
 
 
  public Double getFullxmax() {
    return fullxmax;
  }
 
  public void setFullxmax(Double fullxmax) {
    this.fullxmax = fullxmax;
  }
 
 
  public Double getFullymin() {
    return fullymin;
  }
 
  public void setFullymin(Double fullymin) {
    this.fullymin = fullymin;
  }
 
 
  public Double getFullymax() {
    return fullymax;
  }
 
  public void setFullymax(Double fullymax) {
    this.fullymax = fullymax;
  }
 
 
  public String getType() {
    return type;
  }
 
  public void setType(String type) {
    this.type = type;
  }
 
 
  public String getMapjson() {
    return mapjson;
  }
 
  public void setMapjson(String mapjson) {
    this.mapjson = mapjson;
  }
 
}