From 09fb666dc0890a448aa12f8287ea0f6ba4bd83ad Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 11 一月 2023 10:06:28 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/data/MetaFileEntity.java | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 50 insertions(+), 10 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..134434b 100644 --- a/src/main/java/com/lf/server/entity/data/MetaFileEntity.java +++ b/src/main/java/com/lf/server/entity/data/MetaFileEntity.java @@ -29,9 +29,17 @@ private int createUser; - private String cs; - private String extName; + + private String epsgCode; + + private String tab; + + private String entity; + + private int rows; + + private String msg; public String getEventid() { return eventid; @@ -113,14 +121,6 @@ this.createUser = createUser; } - public String getCs() { - return cs; - } - - public void setCs(String cs) { - this.cs = cs; - } - public String getExtName() { return extName; } @@ -128,4 +128,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