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
44858b87
Commit
44858b87
authored
Jan 04, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
1e8a51af
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
AdminReviewController.java
...a/com/egolm/film/api/web/admin/AdminReviewController.java
+6
-6
No files found.
src/main/java/com/egolm/film/api/web/admin/AdminReviewController.java
View file @
44858b87
...
@@ -133,17 +133,17 @@ public class AdminReviewController {
...
@@ -133,17 +133,17 @@ public class AdminReviewController {
@PostMapping
(
"allot"
)
@PostMapping
(
"allot"
)
@ApiOperation
(
"分配审片评委"
)
@ApiOperation
(
"分配审片评委"
)
@ApiImplicitParams
({
@ApiImplicitParams
({
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"int"
,
required
=
true
,
name
=
"review_id"
,
value
=
"审片主表ID"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"int"
,
required
=
true
,
name
=
"review_id"
,
value
=
"审片主表ID"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"int"
,
required
=
true
,
name
=
"review_round"
,
value
=
"分配评委的审片环节"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"int"
,
required
=
true
,
name
=
"review_round"
,
value
=
"分配评委的审片环节"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"
boolean
"
,
required
=
true
,
name
=
"is_cancel"
,
value
=
"是否取消分配"
,
allowMultiple
=
true
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"
string
"
,
required
=
true
,
name
=
"is_cancel"
,
value
=
"是否取消分配"
,
allowMultiple
=
true
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"int"
,
required
=
true
,
name
=
"user_id"
,
value
=
"审片评委ID"
,
allowMultiple
=
true
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"int"
,
required
=
true
,
name
=
"user_id"
,
value
=
"审片评委ID"
,
allowMultiple
=
true
),
})
})
public
Object
allot
(
Boolean
[]
is_cancel
,
Integer
review_id
,
Integer
review_round
,
Integer
[]
user_id
)
{
public
Object
allot
(
String
[]
is_cancel
,
Integer
review_id
,
Integer
review_round
,
Integer
[]
user_id
)
{
List
<
Integer
>
saveList
=
new
ArrayList
<
Integer
>();
List
<
Integer
>
saveList
=
new
ArrayList
<
Integer
>();
List
<
Integer
>
cancelList
=
new
ArrayList
<
Integer
>();
List
<
Integer
>
cancelList
=
new
ArrayList
<
Integer
>();
if
(
is_cancel
!=
null
)
{
if
(
is_cancel
!=
null
)
{
for
(
int
i
=
0
;
i
<
is_cancel
.
length
;
i
++)
{
for
(
int
i
=
0
;
i
<
is_cancel
.
length
;
i
++)
{
Boolean
boo
=
is_cancel
[
i
]
;
Boolean
boo
=
Util
.
objTo
(
is_cancel
[
i
],
Boolean
.
class
)
;
if
(
boo
)
{
if
(
boo
)
{
cancelList
.
add
(
user_id
[
i
]);
cancelList
.
add
(
user_id
[
i
]);
}
else
{
}
else
{
...
...
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