From ce663f476e7134bb4f9e34d5491fc37be53cc09f Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期四, 21 三月 2024 11:30:39 +0800 Subject: [PATCH] 添加项目名称 --- src/main/java/com/lf/server/entity/data/MetaFileEntity.java | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 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 84b2728..f85ae60 100644 --- a/src/main/java/com/lf/server/entity/data/MetaFileEntity.java +++ b/src/main/java/com/lf/server/entity/data/MetaFileEntity.java @@ -42,9 +42,15 @@ private int rows; + private int records; + private String msg; private Boolean isMeta; + + private String xlsPath; + + private String medium; public String getEventid() { return eventid; @@ -174,6 +180,14 @@ this.rows = rows; } + public int getRecords() { + return records; + } + + public void setRecords(int records) { + this.records = records; + } + public String getMsg() { return msg; } @@ -189,4 +203,20 @@ 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