From e22e727b4fc42274fdc9618d507f9439bc4da352 Mon Sep 17 00:00:00 2001 From: sws <15810472099@163.com> Date: 星期二, 22 十一月 2022 21:20:03 +0800 Subject: [PATCH] 2022-11-22 21:20 --- src/main/java/com/lf/server/entity/data/MetaEntity.java | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 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 5fc4473..dcd1436 100644 --- a/src/main/java/com/lf/server/entity/data/MetaEntity.java +++ b/src/main/java/com/lf/server/entity/data/MetaEntity.java @@ -24,6 +24,10 @@ private double sizes; + private String tab; + + private int rows; + private String cs; private String scale; @@ -111,6 +115,22 @@ this.sizes = sizes; } + public String getTab() { + return tab; + } + + public void setTab(String tab) { + this.tab = tab; + } + + public int getRows() { + return rows; + } + + public void setRows(int rows) { + this.rows = rows; + } + public String getCs() { return cs; } -- Gitblit v1.9.3