From 5573ab68a6bf98014e6948d0c5ab538a90ce0ada Mon Sep 17 00:00:00 2001 From: sws <15810472099@163.com> Date: 星期六, 14 一月 2023 09:46:15 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/data/MetaFileEntity.java | 121 +++++++++++++++++++++++++++++---------- 1 files changed, 89 insertions(+), 32 deletions(-) diff --git a/src/main/java/com/lf/server/entity/data/MetaFileEntity.java b/src/main/java/com/lf/server/entity/data/MetaFileEntity.java index cf95939..6baa193 100644 --- a/src/main/java/com/lf/server/entity/data/MetaFileEntity.java +++ b/src/main/java/com/lf/server/entity/data/MetaFileEntity.java @@ -8,15 +8,19 @@ * @author WWW */ public class MetaFileEntity implements Serializable { - private static final long serialVersionUID = -859236217038350336L; + private static final long serialVersionUID = -3688958480700165163L; - private int id; + private String eventid; + + private int dirid; + + private int depid; + + private int verid; private String name; - private int metaid; - - private int fileid; + private String type; private String guid; @@ -28,19 +32,48 @@ private Timestamp createTime; - private int updateUser; + private String extName; - private Timestamp updateTime; + private String epsgCode; - public MetaFileEntity() { + private String tab; + + private String entity; + + private int rows; + + private String msg; + + public String getEventid() { + return eventid; } - public int getId() { - return id; + public void setEventid(String eventid) { + this.eventid = eventid; } - public void setId(int id) { - this.id = id; + 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() { @@ -51,20 +84,12 @@ this.name = name; } - public int getMetaid() { - return metaid; + public String getType() { + return type; } - public void setMetaid(int metaid) { - this.metaid = metaid; - } - - public int getFileid() { - return fileid; - } - - public void setFileid(int fileid) { - this.fileid = fileid; + public void setType(String type) { + this.type = type; } public String getGuid() { @@ -107,19 +132,51 @@ this.createTime = createTime; } - public int getUpdateUser() { - return updateUser; + public String getExtName() { + return extName; } - public void setUpdateUser(int updateUser) { - this.updateUser = updateUser; + public void setExtName(String extName) { + this.extName = extName; } - public Timestamp getUpdateTime() { - return updateTime; + public String getEpsgCode() { + return epsgCode; } - public void setUpdateTime(Timestamp updateTime) { - this.updateTime = updateTime; + 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 String getMsg() { + return msg; + } + + public void setMsg(String msg) { + this.msg = msg; } } -- Gitblit v1.9.3