Commit 6815c73a authored by Quxl's avatar Quxl

x

parent e6f4b371
......@@ -93,7 +93,7 @@ public class AdminReviewController {
}
@ResponseBody
@PostMapping("listNewAsian_Round_2_List")
@PostMapping("getNewAsianRound2List")
@ApiOperation("查询亚新2选榜单")
@ApiImplicitParams({
@ApiImplicitParam(paramType="query", dataType="string", name="keyword", value="搜索关键字"),
......@@ -102,7 +102,7 @@ public class AdminReviewController {
@ApiImplicitParam(paramType="query", dataType="long", name="index", value="分页编号"),
@ApiImplicitParam(paramType="query", dataType="long", name="limit", value="分页大小"),
})
public Object listNewAsian_Round_2_List(String keyword, Integer review_state, String ext_type, Long index, Long limit) {
public Object getNewAsianRound2List(String keyword, Integer review_state, String ext_type, Long index, Long limit) {
index = index == null ? 1 : index;
limit = limit == null ? 20 : limit;
Page page = new Page(index, limit);
......@@ -111,7 +111,7 @@ public class AdminReviewController {
}
@ResponseBody
@PostMapping("listNewAsian_Round_3_List")
@PostMapping("getNewAsianRound3List")
@ApiOperation("查询亚新3选榜单")
@ApiImplicitParams({
@ApiImplicitParam(paramType="query", dataType="string", name="keyword", value="搜索关键字"),
......@@ -120,7 +120,7 @@ public class AdminReviewController {
@ApiImplicitParam(paramType="query", dataType="long", name="index", value="分页编号"),
@ApiImplicitParam(paramType="query", dataType="long", name="limit", value="分页大小"),
})
public Object listNewAsian_Round_3_List(String keyword, Integer review_state, String ext_type, Long index, Long limit) {
public Object getNewAsianRound3List(String keyword, Integer review_state, String ext_type, Long index, Long limit) {
index = index == null ? 1 : index;
limit = limit == null ? 20 : 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