From ab849f796bdc17236a95ea5fe5c166fb8f24a75c Mon Sep 17 00:00:00 2001
From: sws <15810472099@163.com>
Date: 星期六, 26 十一月 2022 16:12:02 +0800
Subject: [PATCH] 1

---
 src/main/java/com/lf/server/entity/ctrl/DownloadReqEntity.java |   45 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 45 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
new file mode 100644
index 0000000..b0630b6
--- /dev/null
+++ b/src/main/java/com/lf/server/entity/ctrl/DownloadReqEntity.java
@@ -0,0 +1,45 @@
+package com.lf.server.entity.ctrl;
+
+import java.io.Serializable;
+import java.util.List;
+
+/**
+ * 璇锋眰涓嬭浇瀹炰綋绫�
+ * @author WWW
+ */
+public class DownloadReqEntity implements Serializable {
+    private static final long serialVersionUID = -8624235184539814997L;
+
+    private String pwd;
+
+    private String guid;
+
+    private List<Integer> ids;
+
+    public DownloadReqEntity() {
+    }
+
+    public String getPwd() {
+        return pwd;
+    }
+
+    public void setPwd(String pwd) {
+        this.pwd = pwd;
+    }
+
+    public String getGuid() {
+        return guid;
+    }
+
+    public void setGuid(String guid) {
+        this.guid = guid;
+    }
+
+    public List<Integer> getIds() {
+        return ids;
+    }
+
+    public void setIds(List<Integer> ids) {
+        this.ids = ids;
+    }
+}

--
Gitblit v1.9.3