package com.lf.server.entity.data;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
/**
|
* 数据发布
|
* @author WWW
|
*/
|
public class PublishEntity implements Serializable {
|
private static final long serialVersionUID = -386130556178340032L;
|
|
private int id;
|
|
private String name;
|
|
private String url;
|
|
private String path;
|
|
private String type;
|
|
private int status;
|
|
private String dirid;
|
|
private String depid;
|
|
private int min;
|
|
private int max;
|
|
private String json;
|
|
private int createUser;
|
|
private Timestamp createTime;
|
|
private int updateUser;
|
|
private Timestamp updateTime;
|
|
private String geom;
|
|
private String bak;
|
|
public PublishEntity() {
|
}
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public String getPath() {
|
return path;
|
}
|
|
public void setPath(String path) {
|
this.path = path;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public int getStatus() {
|
return status;
|
}
|
|
public void setStatus(int status) {
|
this.status = status;
|
}
|
|
public String getDirid() {
|
return dirid;
|
}
|
|
public void setDirid(String dirid) {
|
this.dirid = dirid;
|
}
|
|
public String getDepid() {
|
return depid;
|
}
|
|
public void setDepid(String depid) {
|
this.depid = depid;
|
}
|
|
public int getMin() {
|
return min;
|
}
|
|
public void setMin(int min) {
|
this.min = min;
|
}
|
|
public int getMax() {
|
return max;
|
}
|
|
public void setMax(int max) {
|
this.max = max;
|
}
|
|
public String getJson() {
|
return json;
|
}
|
|
public void setJson(String json) {
|
this.json = json;
|
}
|
|
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 getGeom() {
|
return geom;
|
}
|
|
public void setGeom(String geom) {
|
this.geom = geom;
|
}
|
|
public String getBak() {
|
return bak;
|
}
|
|
public void setBak(String bak) {
|
this.bak = bak;
|
}
|
}
|