From 58a671a7c81c5bd71ebd1dbcb9b3f3aadb41aac4 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期二, 10 一月 2023 17:51:12 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/data/MetaFileEntity.java | 102 ++++++++++++++++++++++++++++++++++---------------- 1 files changed, 69 insertions(+), 33 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 c1ffd67..31cae41 100644 --- a/src/main/java/com/lf/server/entity/data/MetaFileEntity.java +++ b/src/main/java/com/lf/server/entity/data/MetaFileEntity.java @@ -1,52 +1,72 @@ package com.lf.server.entity.data; import java.io.Serializable; -import java.sql.Timestamp; /** * 鍏冩暟鎹枃浠� * @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 int metaid; + private int dirid; + + private int depid; + + private int verid; private String name; + + private String type; private String guid; private String path; - private int fileid; + private double sizes; private int createUser; - private Timestamp createTime; + private String extName; - private int updateUser; + private String epsgCode; - private Timestamp updateTime; + private String tab; - public MetaFileEntity() { + private String entity; + + 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 int getDirid() { + return dirid; } - public int getMetaid() { - return metaid; + public void setDirid(int dirid) { + this.dirid = dirid; } - public void setMetaid(int metaid) { - this.metaid = metaid; + public int getDepid() { + return depid; + } + + public void setDepid(int depid) { + this.depid = depid; + } + + public int getVerid() { + return verid; + } + + public void setVerid(int verid) { + this.verid = verid; } public String getName() { @@ -55,6 +75,14 @@ public void setName(String name) { this.name = name; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; } public String getGuid() { @@ -73,12 +101,12 @@ this.path = path; } - public int getFileid() { - return fileid; + public double getSizes() { + return sizes; } - public void setFileid(int fileid) { - this.fileid = fileid; + public void setSizes(double sizes) { + this.sizes = sizes; } public int getCreateUser() { @@ -89,27 +117,35 @@ this.createUser = createUser; } - public Timestamp getCreateTime() { - return createTime; + public String getExtName() { + return extName; } - public void setCreateTime(Timestamp createTime) { - this.createTime = createTime; + public void setExtName(String extName) { + this.extName = extName; } - public int getUpdateUser() { - return updateUser; + public String getEpsgCode() { + return epsgCode; } - public void setUpdateUser(int updateUser) { - this.updateUser = updateUser; + public void setEpsgCode(String epsgCode) { + this.epsgCode = epsgCode; } - public Timestamp getUpdateTime() { - return updateTime; + public String getTab() { + return tab; } - public void setUpdateTime(Timestamp updateTime) { - this.updateTime = updateTime; + public void setTab(String tab) { + this.tab = tab; + } + + public String getEntity() { + return entity; + } + + public void setEntity(String entity) { + this.entity = entity; } } -- Gitblit v1.9.3