From ed8c7a5effd0d423ce1118b680ecdca6fe732609 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 02 七月 2025 16:43:13 +0800 Subject: [PATCH] Merge branch 'master' of http://192.168.11.205:9000/r/P2022036_Service --- src/main/java/com/lf/server/entity/data/MetaFileEntity.java | 209 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 209 insertions(+), 0 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 e31697e..f85ae60 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; /** * 鍏冩暟鎹枃浠� @@ -9,5 +10,213 @@ public class MetaFileEntity implements Serializable { private static final long serialVersionUID = -3688958480700165163L; + private String eventid; + private String dircode; + + private String depcode; + + private int verid; + + private String name; + + private String type; + + private String guid; + + private String path; + + private double sizes; + + private int createUser; + + private Timestamp createTime; + + private String extName; + + private String epsgCode; + + private String tab; + + private String entity; + + private int rows; + + private int records; + + private String msg; + + private Boolean isMeta; + + private String xlsPath; + + private String medium; + + public String getEventid() { + return eventid; + } + + public void setEventid(String eventid) { + this.eventid = eventid; + } + + 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() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getGuid() { + return guid; + } + + public void setGuid(String guid) { + this.guid = guid; + } + + public String getPath() { + return path; + } + + public void setPath(String path) { + this.path = path; + } + + public double getSizes() { + return sizes; + } + + public void setSizes(double sizes) { + this.sizes = sizes; + } + + public int getCreateUser() { + return createUser; + } + + public void setCreateUser(int createUser) { + this.createUser = createUser; + } + + public Timestamp getCreateTime() { + return createTime; + } + + public void setCreateTime(Timestamp createTime) { + this.createTime = createTime; + } + + public String getExtName() { + return extName; + } + + 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 int getRecords() { + return records; + } + + public void setRecords(int records) { + this.records = records; + } + + public String getMsg() { + return msg; + } + + public void setMsg(String msg) { + this.msg = msg; + } + + public Boolean getIsMeta() { + return isMeta; + } + + public void setIsMeta(Boolean isMeta) { + this.isMeta = isMeta; + } + + public String getXlsPath() { + return xlsPath; + } + + public void setXlsPath(String xlsPath) { + this.xlsPath = xlsPath; + } + + public String getMedium() { + return medium; + } + + public void setMedium(String medium) { + this.medium = medium; + } } -- Gitblit v1.9.3