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 | 81 +++++++++++++++++++++++++++++++++------- 1 files changed, 66 insertions(+), 15 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 3469b7c..30bf89d 100644 --- a/src/main/java/com/lf/server/entity/data/MetaFileEntity.java +++ b/src/main/java/com/lf/server/entity/data/MetaFileEntity.java @@ -1,6 +1,7 @@ package com.lf.server.entity.data; import java.io.Serializable; +import java.sql.Timestamp; /** * 鍏冩暟鎹枃浠� @@ -11,9 +12,9 @@ private String eventid; - private int dirid; + private String dircode; - private int depid; + private String depcode; private int verid; @@ -29,9 +30,19 @@ private int createUser; - private String cs; + private Timestamp createTime; private String extName; + + private String epsgCode; + + private String tab; + + private String entity; + + private int rows; + + private String msg; public String getEventid() { return eventid; @@ -41,20 +52,20 @@ this.eventid = eventid; } - public int getDirid() { - return dirid; + public String getDircode() { + return dircode; } - public void setDirid(int dirid) { - this.dirid = dirid; + public void setDircode(String dircode) { + this.dircode = dircode; } - public int getDepid() { - return depid; + public String getDepcode() { + return depcode; } - public void setDepid(int depid) { - this.depid = depid; + public void setDepcode(String depcode) { + this.depcode = depcode; } public int getVerid() { @@ -113,12 +124,12 @@ this.createUser = createUser; } - public String getCs() { - return cs; + public Timestamp getCreateTime() { + return createTime; } - public void setCs(String cs) { - this.cs = cs; + public void setCreateTime(Timestamp createTime) { + this.createTime = createTime; } public String getExtName() { @@ -128,4 +139,44 @@ 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 String getMsg() { + return msg; + } + + public void setMsg(String msg) { + this.msg = msg; + } } -- Gitblit v1.9.3