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 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 getLayerIds() { return layerIds; } public void setLayerIds(List layerIds) { this.layerIds = layerIds; } }