月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-13 024e90554d19c2342f27a26f91bbea378f84da82
src/main/java/com/moon/server/entity/sys/LayerEntity.java
@@ -3,10 +3,7 @@
import java.io.Serializable;
import java.sql.Timestamp;
/**
 * 图层
 * @author WWW
 */
@SuppressWarnings("ALL")
public class LayerEntity implements Serializable {
    private static final long serialVersionUID = -371902381708800000L;
@@ -21,6 +18,8 @@
    private String url;
    private int isLayer;
    private int isShow;
    private String icon;
@@ -53,6 +52,12 @@
    private String proxy;
    private int category;
    private int flag;
    private Integer pubid;
    private String unit;
    public LayerEntity() {
    }
@@ -103,6 +108,14 @@
    public void setIsLayer(int isLayer) {
        this.isLayer = isLayer;
    }
    public int getIsShow() {
        return isShow;
    }
    public void setIsShow(int isShow) {
        this.isShow = isShow;
    }
    public String getIcon() {
@@ -232,4 +245,28 @@
    public void setCategory(int category) {
        this.category = category;
    }
    public int getFlag() {
        return flag;
    }
    public void setFlag(int flag) {
        this.flag = flag;
    }
    public Integer getPubid() {
        return pubid;
    }
    public void setPubid(Integer pubid) {
        this.pubid = pubid;
    }
    public String getUnit() {
        return unit;
    }
    public void setUnit(String unit) {
        this.unit = unit;
    }
}