|
@@ -108,8 +108,8 @@ public class KsVideoReportCtrl {
|
|
|
if (!Check.isNull(requestBody.getString("order"))) {
|
|
|
requestMap.put("order", requestBody.getString("order"));
|
|
|
}
|
|
|
- if (!Check.isNull(requestBody.getString("channelName"))) {
|
|
|
- requestMap.put("channelName", requestBody.getString("channelName"));
|
|
|
+ if (!Check.isNull(requestBody.getInteger("channelType"))) {
|
|
|
+ requestMap.put("channelType", requestBody.getInteger("channelType"));
|
|
|
}
|
|
|
PageInfo<JSONObject> listData = ksVideoReportService.getKuaiShouVideoPageReportByMap(requestMap, pageSize, pageNo);
|
|
|
if (Check.isNull(listData)) {
|
|
@@ -244,7 +244,7 @@ public class KsVideoReportCtrl {
|
|
|
HttpServletRequest request,
|
|
|
HttpServletResponse response) {
|
|
|
Result<PageInfo<JSONObject>> result = new Result<>();
|
|
|
- try {
|
|
|
+ try {
|
|
|
|
|
|
|
|
|
if (Check.isNull(requestBody)) {
|
|
@@ -293,8 +293,8 @@ public class KsVideoReportCtrl {
|
|
|
if (!Check.isNull(requestBody.getString("order"))) {
|
|
|
requestMap.put("order", requestBody.getString("order"));
|
|
|
}
|
|
|
- if (!Check.isNull(requestBody.getString("channelName"))) {
|
|
|
- requestMap.put("channelName", requestBody.getString("channelName"));
|
|
|
+ if (!Check.isNull(requestBody.getInteger("channelType"))) {
|
|
|
+ requestMap.put("channelType", requestBody.getInteger("channelType"));
|
|
|
}
|
|
|
|
|
|
JSONArray columns2 = new JSONArray();
|