package com.lf.server.entity.data;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
/**
|
* 元数据
|
* @author WWW
|
*/
|
public class MetaEntity implements Serializable {
|
private static final long serialVersionUID = -984838663593325184L;
|
|
private int id;
|
|
private String eventid;
|
|
private int metaid;
|
|
private int dirid;
|
|
private int depid;
|
|
private int verid;
|
|
private String name;
|
|
private String type;
|
|
private String guid;
|
|
private String path;
|
|
private double sizes;
|
|
private String bstab;
|
|
private int bsrows;
|
|
private String mdtab;
|
|
private int mdrows;
|
|
private int createUser;
|
|
private Timestamp createTime;
|
|
private int updateUser;
|
|
private Timestamp updateTime;
|
|
private String bak;
|
|
private String geom;
|
|
public MetaEntity() {
|
}
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public String getEventid() {
|
return eventid;
|
}
|
|
public void setEventid(String eventid) {
|
this.eventid = eventid;
|
}
|
|
public int getMetaid() {
|
return metaid;
|
}
|
|
public void setMetaid(int metaid) {
|
this.metaid = metaid;
|
}
|
|
public int getDirid() {
|
return dirid;
|
}
|
|
public void setDirid(int dirid) {
|
this.dirid = dirid;
|
}
|
|
public int getDepid() {
|
return depid;
|
}
|
|
public void setDepid(int depid) {
|
this.depid = depid;
|
}
|
|
public int getVerid() {
|
return verid;
|
}
|
|
public void setVerid(int verid) {
|
this.verid = verid;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getGuid() {
|
return guid;
|
}
|
|
public void setGuid(String guid) {
|
this.guid = guid;
|
}
|
|
public String getPath() {
|
return path;
|
}
|
|
public void setPath(String path) {
|
this.path = path;
|
}
|
|
public double getSizes() {
|
return sizes;
|
}
|
|
public void setSizes(double sizes) {
|
this.sizes = sizes;
|
}
|
|
public String getBstab() {
|
return bstab;
|
}
|
|
public void setBstab(String bstab) {
|
this.bstab = bstab;
|
}
|
|
public int getBsrows() {
|
return bsrows;
|
}
|
|
public void setBsrows(int bsrows) {
|
this.bsrows = bsrows;
|
}
|
|
public String getMdtab() {
|
return mdtab;
|
}
|
|
public void setMdtab(String mdtab) {
|
this.mdtab = mdtab;
|
}
|
|
public int getMdrows() {
|
return mdrows;
|
}
|
|
public void setMdrows(int mdrows) {
|
this.mdrows = mdrows;
|
}
|
|
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 String getGeom() {
|
return geom;
|
}
|
|
public void setGeom(String geom) {
|
this.geom = geom;
|
}
|
}
|