From ac20dc99bf1f463365dba071973e08fffbd294b4 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期五, 14 七月 2023 14:12:21 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/ctrl/PubEntity.java | 33 +++++++++++++++++++++++++++++++-- 1 files changed, 31 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/lf/server/entity/ctrl/PubEntity.java b/src/main/java/com/lf/server/entity/ctrl/PubEntity.java index 0ab3c87..21027ea 100644 --- a/src/main/java/com/lf/server/entity/ctrl/PubEntity.java +++ b/src/main/java/com/lf/server/entity/ctrl/PubEntity.java @@ -1,7 +1,5 @@ package com.lf.server.entity.ctrl; -import io.swagger.models.auth.In; - import java.util.List; /** @@ -10,6 +8,7 @@ */ public class PubEntity { public PubEntity() { + srid = 4326; } private String type; @@ -31,6 +30,12 @@ private String depcode; private List<String> ids; + + private List<Integer> models; + + private Integer srid; + + private Double z; public String getType() { return type; @@ -111,4 +116,28 @@ public void setIds(List<String> ids) { this.ids = ids; } + + public List<Integer> getModels() { + return models; + } + + public void setModels(List<Integer> models) { + this.models = models; + } + + public Integer getSrid() { + return srid; + } + + public void setSrid(Integer srid) { + this.srid = srid; + } + + public Double getZ() { + return z; + } + + public void setZ(Double z) { + this.z = z; + } } -- Gitblit v1.9.3