package com.moon.server.entity.sys;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
@SuppressWarnings("ALL")
|
public class LayerEntity implements Serializable {
|
private static final long serialVersionUID = -371902381708800000L;
|
|
private int id;
|
|
private int pid;
|
|
private String cnName;
|
|
private String enName;
|
|
private String url;
|
|
private int isLayer;
|
|
private int isShow;
|
|
private String icon;
|
|
private int level;
|
|
private int orderNum;
|
|
private int status;
|
|
private int data;
|
|
private String tab;
|
|
private int createUser;
|
|
private Timestamp createTime;
|
|
private int updateUser;
|
|
private Timestamp updateTime;
|
|
private String bak;
|
|
private double elev;
|
|
private int resid;
|
|
private int type;
|
|
private String proxy;
|
|
private int category;
|
|
private int flag;
|
|
private Integer pubid;
|
|
private String unit;
|
|
public LayerEntity() {
|
}
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public int getPid() {
|
return pid;
|
}
|
|
public void setPid(int pid) {
|
this.pid = pid;
|
}
|
|
public String getCnName() {
|
return cnName;
|
}
|
|
public void setCnName(String cnName) {
|
this.cnName = cnName;
|
}
|
|
public String getEnName() {
|
return enName;
|
}
|
|
public void setEnName(String enName) {
|
this.enName = enName;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public int getIsLayer() {
|
return isLayer;
|
}
|
|
public void setIsLayer(int isLayer) {
|
this.isLayer = isLayer;
|
}
|
|
public int getIsShow() {
|
return isShow;
|
}
|
|
public void setIsShow(int isShow) {
|
this.isShow = isShow;
|
}
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
public int getLevel() {
|
return level;
|
}
|
|
public void setLevel(int level) {
|
this.level = level;
|
}
|
|
public int getOrderNum() {
|
return orderNum;
|
}
|
|
public void setOrderNum(int orderNum) {
|
this.orderNum = orderNum;
|
}
|
|
public int getStatus() {
|
return status;
|
}
|
|
public void setStatus(int status) {
|
this.status = status;
|
}
|
|
public int getData() {
|
return data;
|
}
|
|
public void setData(int data) {
|
this.data = data;
|
}
|
|
public String getTab() {
|
return tab;
|
}
|
|
public void setTab(String tab) {
|
this.tab = tab;
|
}
|
|
public int getCreateUser() {
|
return createUser;
|
}
|
|
public void setCreateUser(int createUser) {
|
this.createUser = createUser;
|
}
|
|
public Timestamp getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Timestamp createTime) {
|
this.createTime = createTime;
|
}
|
|
public int getUpdateUser() {
|
return updateUser;
|
}
|
|
public void setUpdateUser(int updateUser) {
|
this.updateUser = updateUser;
|
}
|
|
public Timestamp getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Timestamp updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public String getBak() {
|
return bak;
|
}
|
|
public void setBak(String bak) {
|
this.bak = bak;
|
}
|
|
public double getElev() {
|
return elev;
|
}
|
|
public void setElev(double elev) {
|
this.elev = elev;
|
}
|
|
public int getResid() {
|
return resid;
|
}
|
|
public void setResid(int resid) {
|
this.resid = resid;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
public String getProxy() {
|
return proxy;
|
}
|
|
public void setProxy(String proxy) {
|
this.proxy = proxy;
|
}
|
|
public int getCategory() {
|
return category;
|
}
|
|
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;
|
}
|
}
|