月球大数据地理空间分析展示平台-【后端】-月球后台服务
13693261870
2023-09-03 3f39280a9b2b814f883a9b578939f421dd056fef
src/main/java/com/moon/server/entity/ctrl/PubEntity.java
@@ -1,42 +1,102 @@
package com.moon.server.entity.ctrl;
import io.swagger.models.auth.In;
import com.moon.server.entity.shujian.ColorTableEntity;
import com.moon.server.entity.shujian.GradientColorTableEntity;
import java.io.Serializable;
import java.util.List;
/**
 * 发布实体类
 * @author WWW
 * @date 2023-09-02
 */
public class PubEntity {
public class PubEntity implements Serializable {
    private static final long serialVersionUID = 1393159573706054735L;
    public PubEntity() {
        min = 0;
        max = 18;
        epsgCode = 104903;
    }
    /**
     * 发布ID
     */
    private Integer pubid;
    /**
     * 类型:DOM,DEM,Vector,Model
     */
    private String type;
    private String token;
    /**
     * 服务名称
     */
    private String name;
    private Integer userId;
    /**
     * 最小级别
     */
    private Integer min;
    /**
     * 最大级别
     */
    private Integer max;
    private Integer noData;
    /**
     * EPSG编码
     */
    private Integer epsgCode;
    /**
     * 用户ID
     */
    private Integer userId;
    /**
     * 目录编码
     */
    private String dircode;
    /**
     * 单位编码
     */
    private String depcode;
    /**
     * NoData
     */
    private Integer nodata;
    /**
     * 拉伸方式 0:不拉伸, 1 线性拉伸, 2 直方图均衡, 3 标准差拉伸, 4 伽马拉伸
     */
    private Integer enhanceType;
    /**
     * 元数据ID集合
     */
    private List<Integer> ids;
    private List<Integer> models;
    /**
     * 颜色表
     */
    private List<ColorTableEntity> colorTable;
    private List<Integer> srids;
    /**
     * 渐变颜色表
     */
    private List<GradientColorTableEntity> gradientColorTable;
    private List<Double> zs;
    public Integer getPubid() {
        return pubid;
    }
    public void setPubid(Integer pubid) {
        this.pubid = pubid;
    }
    public String getType() {
        return type;
@@ -46,28 +106,12 @@
        this.type = type;
    }
    public String getToken() {
        return token;
    }
    public void setToken(String token) {
        this.token = token;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public Integer getUserId() {
        return userId;
    }
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
    public Integer getMin() {
@@ -86,12 +130,20 @@
        this.max = max;
    }
    public Integer getNoData() {
        return noData;
    public Integer getEpsgCode() {
        return epsgCode;
    }
    public void setNoData(Integer noData) {
        this.noData = noData;
    public void setEpsgCode(Integer epsgCode) {
        this.epsgCode = epsgCode;
    }
    public Integer getUserId() {
        return userId;
    }
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
    public String getDircode() {
@@ -110,6 +162,22 @@
        this.depcode = depcode;
    }
    public Integer getNodata() {
        return nodata;
    }
    public void setNodata(Integer nodata) {
        this.nodata = nodata;
    }
    public Integer getEnhanceType() {
        return enhanceType;
    }
    public void setEnhanceType(Integer enhanceType) {
        this.enhanceType = enhanceType;
    }
    public List<Integer> getIds() {
        return ids;
    }
@@ -118,27 +186,19 @@
        this.ids = ids;
    }
    public List<Integer> getModels() {
        return models;
    public List<ColorTableEntity> getColorTable() {
        return colorTable;
    }
    public void setModels(List<Integer> models) {
        this.models = models;
    public void setColorTable(List<ColorTableEntity> colorTable) {
        this.colorTable = colorTable;
    }
    public List<Integer> getSrids() {
        return srids;
    public List<GradientColorTableEntity> getGradientColorTable() {
        return gradientColorTable;
    }
    public void setSrids(List<Integer> srids) {
        this.srids = srids;
    }
    public List<Double> getZs() {
        return zs;
    }
    public void setZs(List<Double> zs) {
        this.zs = zs;
    public void setGradientColorTable(List<GradientColorTableEntity> gradientColorTable) {
        this.gradientColorTable = gradientColorTable;
    }
}