From ed8c7a5effd0d423ce1118b680ecdca6fe732609 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 02 七月 2025 16:43:13 +0800 Subject: [PATCH] Merge branch 'master' of http://192.168.11.205:9000/r/P2022036_Service --- src/main/java/com/lf/server/entity/ctrl/DownloadReqEntity.java | 54 +++++++++++++++++++++++++++++++++++++++++++----------- 1 files changed, 43 insertions(+), 11 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 19a6c89..547300b 100644 --- a/src/main/java/com/lf/server/entity/ctrl/DownloadReqEntity.java +++ b/src/main/java/com/lf/server/entity/ctrl/DownloadReqEntity.java @@ -1,5 +1,7 @@ package com.lf.server.entity.ctrl; +import com.lf.server.entity.all.AbstractPwdEntity; + import java.io.Serializable; import java.util.List; @@ -7,18 +9,20 @@ * 璇锋眰涓嬭浇瀹炰綋绫� * @author WWW */ -public class DownloadReqEntity implements Serializable { +public class DownloadReqEntity extends AbstractPwdEntity implements Serializable { private static final long serialVersionUID = -8624235184539814997L; - private String pwd; - 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; @@ -28,15 +32,11 @@ private List<String> depcodes; + private String depcode; + + private String dirs; + public DownloadReqEntity() { - } - - public String getPwd() { - return pwd; - } - - public void setPwd(String pwd) { - this.pwd = pwd; } public String getGuid() { @@ -45,6 +45,14 @@ public void setGuid(String guid) { this.guid = guid; + } + + public List<String> getGuids() { + return guids; + } + + public void setGuids(List<String> guids) { + this.guids = guids; } public List<Integer> getIds() { @@ -61,6 +69,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() { @@ -102,4 +118,20 @@ public void setDepcodes(List<String> depcodes) { this.depcodes = depcodes; } + + public String getDirs() { + return dirs; + } + + 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