From fee67ca8a0760315047a52fc4101a8f4f80b7a7f Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期一, 11 十一月 2024 15:02:54 +0800 Subject: [PATCH] 1 --- src/main/java/com/moon/server/entity/show/ExportEntity.java | 46 ++++++++++++++++++++++++---------------------- 1 files changed, 24 insertions(+), 22 deletions(-) diff --git a/src/main/java/com/moon/server/entity/show/ExportEntity.java b/src/main/java/com/moon/server/entity/show/ExportEntity.java index 32dd6cb..2d32bbe 100644 --- a/src/main/java/com/moon/server/entity/show/ExportEntity.java +++ b/src/main/java/com/moon/server/entity/show/ExportEntity.java @@ -4,13 +4,11 @@ import lombok.NoArgsConstructor; import java.io.Serializable; +import java.util.ArrayList; +import java.util.List; -/** - * 鍦ㄧ嚎鍒跺浘 - * @author WWW - */ +@SuppressWarnings("ALL") @AllArgsConstructor -@NoArgsConstructor public class ExportEntity implements Serializable { private static final long serialVersionUID = -2104359582441796685L; @@ -32,15 +30,19 @@ private double rotation; - private double xmin; + private Double xmin; - private double ymin; + private Double ymin; - private double ymax; + private Double ymax; - private double xmax; + private Double xmax; - private String wmtsUrl; + private List<Integer> layerIds; + + public ExportEntity() { + this.layerIds = new ArrayList<>(); + } public String getToken() { return token; @@ -114,43 +116,43 @@ this.rotation = rotation; } - public double getXmin() { + public Double getXmin() { return xmin; } - public void setXmin(double xmin) { + public void setXmin(Double xmin) { this.xmin = xmin; } - public double getYmin() { + public Double getYmin() { return ymin; } - public void setYmin(double ymin) { + public void setYmin(Double ymin) { this.ymin = ymin; } - public double getYmax() { + public Double getYmax() { return ymax; } - public void setYmax(double ymax) { + public void setYmax(Double ymax) { this.ymax = ymax; } - public double getXmax() { + public Double getXmax() { return xmax; } - public void setXmax(double xmax) { + public void setXmax(Double xmax) { this.xmax = xmax; } - public String getWmtsUrl() { - return wmtsUrl; + public List<Integer> getLayerIds() { + return layerIds; } - public void setWmtsUrl(String wmtsUrl) { - this.wmtsUrl = wmtsUrl; + public void setLayerIds(List<Integer> layerIds) { + this.layerIds = layerIds; } } -- Gitblit v1.9.3