Commit df4d7c03 authored by Quxl's avatar Quxl

x

parent 9051ff54
...@@ -92,7 +92,7 @@ public class AdminReportController { ...@@ -92,7 +92,7 @@ public class AdminReportController {
limit = limit == null ? 20 : limit; limit = limit == null ? 20 : limit;
Page page = new Page(index, limit, limitKey); Page page = new Page(index, limit, limitKey);
List<Map<String, Object>> list = filmReportService.queryUserViewReport(page); List<Map<String, Object>> list = filmReportService.queryUserViewReport(page);
return Rjx.jsonOk().setData(list); return Rjx.jsonOk().setData(list).setPage(page);
} }
@ResponseBody @ResponseBody
...@@ -103,7 +103,7 @@ public class AdminReportController { ...@@ -103,7 +103,7 @@ public class AdminReportController {
limit = limit == null ? 20 : limit; limit = limit == null ? 20 : limit;
Page page = new Page(index, limit, limitKey); Page page = new Page(index, limit, limitKey);
List<Map<String, Object>> list = filmReportService.queryUserReiewReport(user_id, page); List<Map<String, Object>> list = filmReportService.queryUserReiewReport(user_id, page);
return Rjx.jsonOk().setData(list); return Rjx.jsonOk().setData(list).setPage(page);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment