Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
sentinel
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
曲欣亮
sentinel
Commits
6815c73a
Commit
6815c73a
authored
Jan 02, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
e6f4b371
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
AdminReviewController.java
...a/com/egolm/film/api/web/admin/AdminReviewController.java
+4
-4
No files found.
src/main/java/com/egolm/film/api/web/admin/AdminReviewController.java
View file @
6815c73a
...
...
@@ -93,7 +93,7 @@ public class AdminReviewController {
}
@ResponseBody
@PostMapping
(
"
listNewAsian_Round_2_
List"
)
@PostMapping
(
"
getNewAsianRound2
List"
)
@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
getNewAsianRound2
List
(
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
(
"
getNewAsianRound3
List"
)
@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
getNewAsianRound3
List
(
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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment