管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-07-15 bc5e5cd30efa1a06a56a958959874aba3e90034f
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,11 +28,11 @@
    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;
@@ -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,12 +124,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() {