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
bdd86052
Commit
bdd86052
authored
Feb 19, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
d0ce8a1f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
AdminReviewController.java
...a/com/egolm/film/api/web/admin/AdminReviewController.java
+3
-0
UserReviewController.java
...ava/com/egolm/film/api/web/user/UserReviewController.java
+4
-0
No files found.
src/main/java/com/egolm/film/api/web/admin/AdminReviewController.java
View file @
bdd86052
...
...
@@ -395,6 +395,9 @@ public class AdminReviewController {
List
<
Fc_review_record_ext
>
exts
=
new
ArrayList
<
Fc_review_record_ext
>();
if
(
ext_score
!=
null
)
{
for
(
int
i
=
0
;
i
<
ext_score
.
length
;
i
++)
{
XRException
.
assertNotBlank
(
"奖项评分不能为空"
,
ext_score
[
i
]);
XRException
.
assertNotBlank
(
"获奖类型不能为空"
,
ext_type
[
i
]);
XRException
.
assertNotBlank
(
"获奖主体不能为空"
,
ext_name
[
i
]);
Fc_review_record_ext
ext
=
new
Fc_review_record_ext
();
ext
.
setRecord_id
(
ru
.
getId
());
ext
.
setExt_title
(
ext_title
[
i
]);
...
...
src/main/java/com/egolm/film/api/web/user/UserReviewController.java
View file @
bdd86052
...
...
@@ -22,6 +22,7 @@ import com.egolm.film.bean.Fc_review_doubtful;
import
com.egolm.film.bean.Fc_review_record
;
import
com.egolm.film.bean.Fc_review_record_ext
;
import
com.egolm.film.config.XException
;
import
com.egolm.film.config.XRException
;
import
com.egolm.film.model.LoginToken
;
import
io.swagger.annotations.Api
;
...
...
@@ -175,6 +176,9 @@ public class UserReviewController {
if
(
ext_title
!=
null
&&
ext_score
!=
null
)
{
if
(
ext_title
.
length
==
ext_score
.
length
)
{
for
(
int
i
=
0
;
i
<
ext_title
.
length
;
i
++)
{
XRException
.
assertNotBlank
(
"奖项评分不能为空"
,
ext_score
[
i
]);
XRException
.
assertNotBlank
(
"获奖类型不能为空"
,
ext_type
[
i
]);
XRException
.
assertNotBlank
(
"获奖主体不能为空"
,
ext_name
[
i
]);
Fc_review_record_ext
ext
=
new
Fc_review_record_ext
();
ext
.
setRecord_id
(
ru
.
getId
());
ext
.
setExt_title
(
ext_title
[
i
]);
...
...
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