package com.moon.server.entity.data;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
/**
|
* 元数据文件
|
* @author WWW
|
*/
|
public class MetaFileEntity implements Serializable {
|
private static final long serialVersionUID = -3688958480700165163L;
|
|
private String eventid;
|
|
private String dircode;
|
|
private String depcode;
|
|
private int verid;
|
|
private String name;
|
|
private String type;
|
|
private String guid;
|
|
private String path;
|
|
private double sizes;
|
|
private int createUser;
|
|
private Timestamp createTime;
|
|
private String extName;
|
|
private String epsgCode;
|
|
private String tab;
|
|
private String entity;
|
|
private int rows;
|
|
private int records;
|
|
private String msg;
|
|
private Boolean isMeta;
|
|
private String xlsPath;
|
|
public String getEventid() {
|
return eventid;
|
}
|
|
public void setEventid(String eventid) {
|
this.eventid = eventid;
|
}
|
|
public String getDircode() {
|
return dircode;
|
}
|
|
public void setDircode(String dircode) {
|
this.dircode = dircode;
|
}
|
|
public String getDepcode() {
|
return depcode;
|
}
|
|
public void setDepcode(String depcode) {
|
this.depcode = depcode;
|
}
|
|
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 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 String getExtName() {
|
return extName;
|
}
|
|
public void setExtName(String extName) {
|
this.extName = extName;
|
}
|
|
public String getEpsgCode() {
|
return epsgCode;
|
}
|
|
public void setEpsgCode(String epsgCode) {
|
this.epsgCode = epsgCode;
|
}
|
|
public String getTab() {
|
return tab;
|
}
|
|
public void setTab(String tab) {
|
this.tab = tab;
|
}
|
|
public String getEntity() {
|
return entity;
|
}
|
|
public void setEntity(String entity) {
|
this.entity = entity;
|
}
|
|
public int getRows() {
|
return rows;
|
}
|
|
public void setRows(int rows) {
|
this.rows = rows;
|
}
|
|
public int getRecords() {
|
return records;
|
}
|
|
public void setRecords(int records) {
|
this.records = records;
|
}
|
|
public String getMsg() {
|
return msg;
|
}
|
|
public void setMsg(String msg) {
|
this.msg = msg;
|
}
|
|
public Boolean getIsMeta() {
|
return isMeta;
|
}
|
|
public void setIsMeta(Boolean isMeta) {
|
this.isMeta = isMeta;
|
}
|
|
public String getXlsPath() {
|
return xlsPath;
|
}
|
|
public void setXlsPath(String xlsPath) {
|
this.xlsPath = xlsPath;
|
}
|
}
|