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
42259c4a
Commit
42259c4a
authored
Dec 17, 2018
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
ba2b2c1b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
FilmServiceImpl.java
...java/com/egolm/film/api/service/impl/FilmServiceImpl.java
+11
-3
No files found.
src/main/java/com/egolm/film/api/service/impl/FilmServiceImpl.java
View file @
42259c4a
...
@@ -431,11 +431,16 @@ public class FilmServiceImpl implements FilmService {
...
@@ -431,11 +431,16 @@ public class FilmServiceImpl implements FilmService {
+
"mf.upload_state, "
+
"mf.upload_state, "
+
"mf.film_country, "
+
"mf.film_country, "
+
"mf.enroll_type_name, "
+
"mf.enroll_type_name, "
+
"r.review_state, "
+
"r.allot_state, "
+
"r.state r_state, "
+
"group_concat(fp.playactor_name) director_name "
+
"group_concat(fp.playactor_name) director_name "
+
"from "
+
"from "
+
"fc_member_film mf, fc_member_film_playactor fp "
+
"fc_member_film mf, fc_
review r, fc_
member_film_playactor fp "
+
"where "
+
"where "
+
"mf.id = fp.film_id "
+
"mf.id = r.film_id "
+
"and r.film_id = fp.film_id"
+
"and mf.id = fp.film_id "
+
"and fp.playactor_type = 'director' "
+
"and fp.playactor_type = 'director' "
+
StringUtil
.
join
(
" and "
,
" and "
,
" "
,
" "
,
where
.
getStringList
())
+
StringUtil
.
join
(
" and "
,
" and "
,
" "
,
" "
,
where
.
getStringList
())
+
"group by "
+
"group by "
...
@@ -452,7 +457,10 @@ public class FilmServiceImpl implements FilmService {
...
@@ -452,7 +457,10 @@ public class FilmServiceImpl implements FilmService {
+
"mf.apply_state, "
+
"mf.apply_state, "
+
"mf.upload_id, "
+
"mf.upload_id, "
+
"mf.upload_state, "
+
"mf.upload_state, "
+
"mf.film_country "
+
"mf.film_country, "
+
"r.reivew_state, "
+
"r.allot_state, "
+
"r.state "
+
"order by mf.film_no"
;
+
"order by mf.film_no"
;
Object
[]
objs
=
where
.
getObjectList
();
Object
[]
objs
=
where
.
getObjectList
();
return
jdbcTemplate
.
limit
(
sql
,
page
,
objs
);
return
jdbcTemplate
.
limit
(
sql
,
page
,
objs
);
...
...
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