| | |
| | | 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; |
| | |
| | | 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() { |
| | |
| | | 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() { |
| | |
| | | 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; |
| | | } |
| | |
| | | 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; |
| | | } |
| | | } |