From 007055d472637dec702b60f025480e266e1a746d Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期四, 20 四月 2023 16:01:46 +0800
Subject: [PATCH] IOS头像上传优化

---
 src/main/java/com/yeshi/buwan/dto/search/SolrVideoSearchFilter.java |   18 +++++++++++++++---
 1 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/yeshi/buwan/dto/search/SolrVideoSearchFilter.java b/src/main/java/com/yeshi/buwan/dto/search/SolrVideoSearchFilter.java
index 4cc76f8..f2d816b 100644
--- a/src/main/java/com/yeshi/buwan/dto/search/SolrVideoSearchFilter.java
+++ b/src/main/java/com/yeshi/buwan/dto/search/SolrVideoSearchFilter.java
@@ -1,5 +1,7 @@
 package com.yeshi.buwan.dto.search;
 
+import java.util.List;
+
 public class SolrVideoSearchFilter {
 
     //鏄惁妯$硦
@@ -13,9 +15,11 @@
 
     private String area;
 
+    private List<String> areas;
+
     private Integer contentType;
     private Integer videoType;
-    private String[] resourceIds;
+    private List<String> resourceIds;
     private String sortKey;
 
     private Integer freeType;
@@ -69,11 +73,11 @@
         this.videoType = videoType;
     }
 
-    public String[] getResourceIds() {
+    public List<String> getResourceIds() {
         return resourceIds;
     }
 
-    public void setResourceIds(String[] resourceIds) {
+    public void setResourceIds(List<String> resourceIds) {
         this.resourceIds = resourceIds;
     }
 
@@ -100,4 +104,12 @@
     public void setFuzzy(boolean fuzzy) {
         this.fuzzy = fuzzy;
     }
+
+    public List<String> getAreas() {
+        return areas;
+    }
+
+    public void setAreas(List<String> areas) {
+        this.areas = areas;
+    }
 }

--
Gitblit v1.8.0