From ec17edbc0d74fc08dadbe723278ff8f07841dc30 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期六, 25 二月 2023 10:44:42 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/data/MetaEntity.java | 42 +++++++++++++++++++++++++++++++----------- 1 files changed, 31 insertions(+), 11 deletions(-) diff --git a/src/main/java/com/lf/server/entity/data/MetaEntity.java b/src/main/java/com/lf/server/entity/data/MetaEntity.java index 9334620..62aa7b5 100644 --- a/src/main/java/com/lf/server/entity/data/MetaEntity.java +++ b/src/main/java/com/lf/server/entity/data/MetaEntity.java @@ -4,7 +4,7 @@ import java.sql.Timestamp; /** - * 鍏冩暟鎹� + * 婧愭暟鎹� * @author WWW */ public class MetaEntity implements Serializable { @@ -16,9 +16,11 @@ private int metaid; - private int dirid; + private short ismeta; - private int depid; + private String dircode; + + private String depcode; private int verid; @@ -33,6 +35,8 @@ private double sizes; private String tab; + + private String layer; private int rows; @@ -83,20 +87,28 @@ this.metaid = metaid; } - public int getDirid() { - return dirid; + public short getIsmeta() { + return ismeta; } - public void setDirid(int dirid) { - this.dirid = dirid; + public void setIsmeta(short ismeta) { + this.ismeta = ismeta; } - public int getDepid() { - return depid; + public String getDircode() { + return dircode; } - public void setDepid(int depid) { - this.depid = depid; + public void setDircode(String dircode) { + this.dircode = dircode; + } + + public String getDepcode() { + return depcode; + } + + public void setDepcode(String depcode) { + this.depcode = depcode; } public int getVerid() { @@ -155,6 +167,14 @@ this.tab = tab; } + public String getLayer() { + return layer; + } + + public void setLayer(String layer) { + this.layer = layer; + } + public int getRows() { return rows; } -- Gitblit v1.9.3