管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2024-12-06 042b07f18720af7559f30f5c0b50b770df4a85f6
src/main/java/com/lf/server/entity/ctrl/PubEntity.java
@@ -22,11 +22,19 @@
    private Integer max;
    private Integer noData;
    private String dircode;
    private String depcode;
    private List<String> ids;
    private List<Integer> ids;
    private List<Integer> models;
    private List<Integer> srids;
    private List<Double> zs;
    public String getType() {
        return type;
@@ -76,6 +84,14 @@
        this.max = max;
    }
    public Integer getNoData() {
        return noData;
    }
    public void setNoData(Integer noData) {
        this.noData = noData;
    }
    public String getDircode() {
        return dircode;
    }
@@ -92,11 +108,35 @@
        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;
    }
    public List<Integer> getModels() {
        return models;
    }
    public void setModels(List<Integer> models) {
        this.models = models;
    }
    public List<Integer> getSrids() {
        return srids;
    }
    public void setSrids(List<Integer> srids) {
        this.srids = srids;
    }
    public List<Double> getZs() {
        return zs;
    }
    public void setZs(List<Double> zs) {
        this.zs = zs;
    }
}