Commit 6b9ddd17 authored by Quxl's avatar Quxl

x

parent b5a011bc
...@@ -360,7 +360,7 @@ public class AdminReviewController { ...@@ -360,7 +360,7 @@ public class AdminReviewController {
@ApiImplicitParam(paramType = "query", dataType = "int", required = false, name = "index"), @ApiImplicitParam(paramType = "query", dataType = "int", required = false, name = "index"),
@ApiImplicitParam(paramType = "query", dataType = "int", required = false, name = "limit"), @ApiImplicitParam(paramType = "query", dataType = "int", required = false, name = "limit"),
}) })
public Object getReviewRecordList2(String username, Integer enroll_type_id, Integer review_state, Long index, Long limit) { public Object getReviewRecordLogList(String username, Integer enroll_type_id, Integer review_state, Long index, Long limit) {
index = index == null ? 1 : index; index = index == null ? 1 : index;
limit = limit == null ? 20 : limit; limit = limit == null ? 20 : limit;
Page page = new Page(index, limit); Page page = new Page(index, limit);
......
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