管道基础大数据平台系统开发-【后端】-Server
13693261870
2025-07-02 ed8c7a5effd0d423ce1118b680ecdca6fe732609
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,13 @@
    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 +108,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,19 +124,19 @@
        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() {
        return z;
    public List<Double> getZs() {
        return zs;
    }
    public void setZ(Double z) {
        this.z = z;
    public void setZs(List<Double> zs) {
        this.zs = zs;
    }
}