月球大数据地理空间分析展示平台-【后端】-月球后台服务
13693261870
2023-10-31 b8c401d88d6e2c982c466ff79d8cf3e3a5d4dcf5
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
package com.moon.server.entity.show;
 
import lombok.AllArgsConstructor;
import lombok.NoArgsConstructor;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
 
/**
 * 在线制图
 * @author WWW
 */
@AllArgsConstructor
public class ExportEntity implements Serializable {
    private static final long serialVersionUID = -2104359582441796685L;
 
    private String token;
 
    private String title;
 
    private String pageSize;
 
    private String province;
 
    private String scale;
 
    private String resolution;
 
    private String date;
 
    private String layers;
 
    private double rotation;
 
    private Double xmin;
 
    private Double ymin;
 
    private Double ymax;
 
    private Double xmax;
 
    private List<Integer> layerIds;
 
    public ExportEntity() {
        this.layerIds = new ArrayList<>();
    }
 
    public String getToken() {
        return token;
    }
 
    public void setToken(String token) {
        this.token = token;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getPageSize() {
        return pageSize;
    }
 
    public void setPageSize(String pageSize) {
        this.pageSize = pageSize;
    }
 
    public String getProvince() {
        return province;
    }
 
    public void setProvince(String province) {
        this.province = province;
    }
 
    public String getScale() {
        return scale;
    }
 
    public void setScale(String scale) {
        this.scale = scale;
    }
 
    public String getResolution() {
        return resolution;
    }
 
    public void setResolution(String resolution) {
        this.resolution = resolution;
    }
 
    public String getDate() {
        return date;
    }
 
    public void setDate(String date) {
        this.date = date;
    }
 
    public String getLayers() {
        return layers;
    }
 
    public void setLayers(String layers) {
        this.layers = layers;
    }
 
    public double getRotation() {
        return rotation;
    }
 
    public void setRotation(double rotation) {
        this.rotation = rotation;
    }
 
    public Double getXmin() {
        return xmin;
    }
 
    public void setXmin(Double xmin) {
        this.xmin = xmin;
    }
 
    public Double getYmin() {
        return ymin;
    }
 
    public void setYmin(Double ymin) {
        this.ymin = ymin;
    }
 
    public Double getYmax() {
        return ymax;
    }
 
    public void setYmax(Double ymax) {
        this.ymax = ymax;
    }
 
    public Double getXmax() {
        return xmax;
    }
 
    public void setXmax(Double xmax) {
        this.xmax = xmax;
    }
 
    public List<Integer> getLayerIds() {
        return layerIds;
    }
 
    public void setLayerIds(List<Integer> layerIds) {
        this.layerIds = layerIds;
    }
}