管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-07-17 b8f6e61b911224627c998e87bde447a2bdca5ace
src/main/java/com/lf/server/entity/ctrl/PubEntity.java
@@ -8,7 +8,6 @@
 */
public class PubEntity {
    public PubEntity() {
        srid = 4326;
    }
    private String type;
@@ -29,13 +28,15 @@
    private String depcode;
    private List<String> ids;
    private List<Integer> ids;
    private List<Integer> models;
    private Integer srid;
    private List<Integer> srids;
    private Double z;
    private List<Double> zs;
    public String getType() {
        return type;
@@ -109,11 +110,11 @@
        this.depcode = depcode;
    }
    public List<String> getIds() {
    public List<Integer> getIds() {
        return ids;
    }
    public void setIds(List<String> ids) {
    public void setIds(List<Integer> ids) {
        this.ids = ids;
    }
@@ -125,12 +126,12 @@
        this.models = models;
    }
    public Integer getSrid() {
        return srid;
    public List<Integer> getSrids() {
        return srids;
    }
    public void setSrid(Integer srid) {
        this.srid = srid;
    public void setSrids(List<Integer> srids) {
        this.srids = srids;
    }
    public Double getZ() {
@@ -140,4 +141,12 @@
    public void setZ(Double z) {
        this.z = z;
    }
    public List<Double> getZs() {
        return zs;
    }
    public void setZs(List<Double> zs) {
        this.zs = zs;
    }
}