package com.lf.server.entity.show;
|
|
import lombok.AllArgsConstructor;
|
import lombok.NoArgsConstructor;
|
|
import java.io.Serializable;
|
|
/**
|
* 在线制图
|
* @author WWW
|
*/
|
@AllArgsConstructor
|
@NoArgsConstructor
|
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;
|
|
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;
|
}
|
}
|