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
10fcc19a
Commit
10fcc19a
authored
Feb 13, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
ca53fa95
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
ReviewServiceImpl.java
...va/com/egolm/film/api/service/impl/ReviewServiceImpl.java
+1
-2
No files found.
src/main/java/com/egolm/film/api/service/impl/ReviewServiceImpl.java
View file @
10fcc19a
...
@@ -57,7 +57,6 @@ public class ReviewServiceImpl implements ReviewService {
...
@@ -57,7 +57,6 @@ public class ReviewServiceImpl implements ReviewService {
.
eq
(
"mf.film_type_name"
,
film_type_name
)
.
eq
(
"mf.film_type_name"
,
film_type_name
)
.
eq
(
"mf.film_type_name_short"
,
film_type_name_short
)
.
eq
(
"mf.film_type_name_short"
,
film_type_name_short
)
.
eq
(
"mf.film_country"
,
film_country
)
.
eq
(
"mf.film_country"
,
film_country
)
.
gt
(
"r.review_round"
,
0
)
.
eq
(
"r.review_round"
,
review_round
)
.
eq
(
"r.review_round"
,
review_round
)
.
eq
(
"r.review_state"
,
review_state
)
.
eq
(
"r.review_state"
,
review_state
)
.
eq
(
"r.allot_state"
,
allot_state
)
.
eq
(
"r.allot_state"
,
allot_state
)
...
@@ -135,7 +134,7 @@ public class ReviewServiceImpl implements ReviewService {
...
@@ -135,7 +134,7 @@ public class ReviewServiceImpl implements ReviewService {
@Override
@Override
public
List
<
Map
<
String
,
Object
>>
queryBestMvListByGroup
(
String
keyword
,
Integer
user_group_id
,
Integer
review_round
,
String
ext_type
,
Page
page
)
{
public
List
<
Map
<
String
,
Object
>>
queryBestMvListByGroup
(
String
keyword
,
Integer
user_group_id
,
Integer
review_round
,
String
ext_type
,
Page
page
)
{
XRException
.
assertNotBlank
(
"选片轮数不能为空"
,
review_round
);
XRException
.
assertNotBlank
(
"选片轮数不能为空"
,
review_round
);
String
sql
=
"select r.* from fc_review r where r.enroll_type_id = 2 and review_round >= "
+
review_round
;
String
sql
=
"select r.* from fc_review r
left join fc_
where r.enroll_type_id = 2 and review_round >= "
+
review_round
;
//TODO
//TODO
return
null
;
return
null
;
}
}
...
...
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