From 8c10eb7086cb61712747b96dae712526d90e5269 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期一, 06 三月 2023 15:45:31 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/ctrl/DownloadReqEntity.java | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/lf/server/entity/ctrl/DownloadReqEntity.java b/src/main/java/com/lf/server/entity/ctrl/DownloadReqEntity.java index f2471d5..19a76e2 100644 --- a/src/main/java/com/lf/server/entity/ctrl/DownloadReqEntity.java +++ b/src/main/java/com/lf/server/entity/ctrl/DownloadReqEntity.java @@ -14,11 +14,15 @@ private String guid; + private List<String> guids; + private List<Integer> ids; private String wkt; private List<String> entities; + + private String tab; private List<String> tabs; @@ -49,6 +53,14 @@ this.guid = guid; } + public List<String> getGuids() { + return guids; + } + + public void setGuids(List<String> guids) { + this.guids = guids; + } + public List<Integer> getIds() { return ids; } @@ -65,6 +77,14 @@ this.wkt = wkt; } + public String getTab() { + return tab; + } + + public void setTab(String tab) { + this.tab = tab; + } + public List<String> getTabs() { return tabs; } -- Gitblit v1.9.3