From 05ffa1a7f490e1e81d6fbf1ee948db50b1fff6fc Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期二, 14 二月 2023 16:02:52 +0800 Subject: [PATCH] 修改depcode、dircode值 --- 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..30bf89d 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 String dircode; + + private String depcode; + + 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 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() { @@ -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