From cdc3690a0354e01b44852f4c9da3b7204128d2eb Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期五, 13 八月 2021 18:46:36 +0800 Subject: [PATCH] 增加苹果内购回调日志,兼容苹果内购 --- src/main/java/com/yeshi/buwan/dto/search/SolrShortVideoSearchFilter.java | 24 ++++++++++++++---------- 1 files changed, 14 insertions(+), 10 deletions(-) diff --git a/src/main/java/com/yeshi/buwan/dto/search/SolrShortVideoSearchFilter.java b/src/main/java/com/yeshi/buwan/dto/search/SolrShortVideoSearchFilter.java index 47c8b68..dffa473 100644 --- a/src/main/java/com/yeshi/buwan/dto/search/SolrShortVideoSearchFilter.java +++ b/src/main/java/com/yeshi/buwan/dto/search/SolrShortVideoSearchFilter.java @@ -1,15 +1,17 @@ package com.yeshi.buwan.dto.search; +import java.util.List; + /** * 鐭棰� */ public class SolrShortVideoSearchFilter { private boolean fuzzy; private String key; - private String area; + private List<String> areas; private String tag; private Integer rootVideoType; - private Integer resourceId; + private List<Integer> resourceIds; private String categoryName; private String sortKey; @@ -21,12 +23,13 @@ this.key = key; } - public String getArea() { - return area; + + public List<String> getAreas() { + return areas; } - public void setArea(String area) { - this.area = area; + public void setAreas(List<String> areas) { + this.areas = areas; } public String getTag() { @@ -45,12 +48,13 @@ this.rootVideoType = rootVideoType; } - public Integer getResourceId() { - return resourceId; + + public List<Integer> getResourceIds() { + return resourceIds; } - public void setResourceId(Integer resourceId) { - this.resourceId = resourceId; + public void setResourceIds(List<Integer> resourceIds) { + this.resourceIds = resourceIds; } public String getCategoryName() { -- Gitblit v1.8.0