月球大数据地理空间分析展示平台-【后端】-月球后台服务
13693261870
2023-08-14 e002c67732b571f0b20cca8321ca8ee1ddba2e05
src/main/java/com/moon/server/entity/ctrl/PubEntity.java
@@ -30,7 +30,13 @@
    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;
@@ -104,11 +110,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;
    }
}