管道基础大数据平台系统开发-【后端】-Server
13693261870
2023-06-12 4ca77edbe07508f1bd4a878c7c00d7b7fbf0abb5
src/main/java/com/lf/server/entity/ctrl/PubEntity.java
@@ -1,5 +1,7 @@
package com.lf.server.entity.ctrl;
import io.swagger.models.auth.In;
import java.util.List;
/**
@@ -22,11 +24,15 @@
    private Integer max;
    private Integer noData;
    private String dircode;
    private String depcode;
    private List<String> ids;
    private List<Integer> models;
    public String getType() {
        return type;
@@ -76,6 +82,14 @@
        this.max = max;
    }
    public Integer getNoData() {
        return noData;
    }
    public void setNoData(Integer noData) {
        this.noData = noData;
    }
    public String getDircode() {
        return dircode;
    }
@@ -99,4 +113,12 @@
    public void setIds(List<String> ids) {
        this.ids = ids;
    }
    public List<Integer> getModels() {
        return models;
    }
    public void setModels(List<Integer> models) {
        this.models = models;
    }
}