From c509bd8047cfd582c59bba66d148b236e45d038d Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期四, 12 一月 2023 10:15:15 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/data/MetaFileEntity.java | 61 ++++++++++++++++++++++++++++-- 1 files changed, 56 insertions(+), 5 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..6baa193 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; /** * 鍏冩暟鎹枃浠� @@ -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; @@ -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