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/SolrVideoSearchFilter.java | 8 +++++--- 1 files changed, 5 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..067d324 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 { //鏄惁妯$硦 @@ -15,7 +17,7 @@ private Integer contentType; private Integer videoType; - private String[] resourceIds; + private List<String> resourceIds; private String sortKey; private Integer freeType; @@ -69,11 +71,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; } -- Gitblit v1.8.0