|
@@ -87,6 +87,7 @@ public class KuaiShouVideoGetController {
|
|
|
String endDate,
|
|
|
String materialType,
|
|
|
String channelType,
|
|
|
+ String signatures,
|
|
|
String orderBy,
|
|
|
@RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
|
|
|
@RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
|
|
@@ -107,6 +108,7 @@ public class KuaiShouVideoGetController {
|
|
|
if (Check.isNull(orderBy)) {
|
|
|
throw new Exception("请传入排序方式");
|
|
|
}
|
|
|
+
|
|
|
List<KuaiShouVideoGetVo> list = new ArrayList<>();
|
|
|
PageHelper.startPage(pageNo, pageSize);
|
|
|
Map<String, Object> requestMap = new HashMap<>();
|
|
@@ -114,6 +116,10 @@ public class KuaiShouVideoGetController {
|
|
|
requestMap.put("orderBy", orderBy);
|
|
|
requestMap.put("materialType", materialType);
|
|
|
requestMap.put("channelType", channelType);
|
|
|
+ if(!Check.isNull(signatures)){
|
|
|
+ String[] signatureArray = signatures.split(",");
|
|
|
+ requestMap.put("signatureList", signatureArray);
|
|
|
+ }
|
|
|
if ("time".equals(orderBy)) {
|
|
|
if (!Check.isNull(startDate) && !Check.isNull(endDate)) {
|
|
|
requestMap.put("startDate", startDate);
|