From 05b7f36c1fdb1dae4fd2131f63e10f72f85ee42c Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期一, 03 四月 2023 16:49:14 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/ctrl/DownloadReqEntity.java | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 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..b76e610 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; @@ -27,6 +31,8 @@ private String filter; private List<String> depcodes; + + private String depcode; private String dirs; @@ -49,6 +55,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; } @@ -63,6 +77,14 @@ public void setWkt(String wkt) { this.wkt = wkt; + } + + public String getTab() { + return tab; + } + + public void setTab(String tab) { + this.tab = tab; } public List<String> getTabs() { @@ -112,4 +134,12 @@ public void setDirs(String dirs) { this.dirs = dirs; } + + public String getDepcode() { + return depcode; + } + + public void setDepcode(String depcode) { + this.depcode = depcode; + } } -- Gitblit v1.9.3