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
e8aa6b43
Commit
e8aa6b43
authored
Mar 05, 2019
by
张永
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.egolm.com/hanxu/siff-film-api.git
parents
d1d160c8
29ebf6a2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
FilmController.java
src/main/java/com/egolm/film/api/web/FilmController.java
+2
-0
Fc_member_film_ext.java
src/main/java/com/egolm/film/bean/Fc_member_film_ext.java
+22
-0
No files found.
src/main/java/com/egolm/film/api/web/FilmController.java
View file @
e8aa6b43
...
@@ -224,6 +224,8 @@ public class FilmController {
...
@@ -224,6 +224,8 @@ public class FilmController {
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"director_biography_en"
,
value
=
"导演英文简介"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"director_biography_en"
,
value
=
"导演英文简介"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"producer_cn"
,
value
=
"制片人中文名"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"producer_cn"
,
value
=
"制片人中文名"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"producer_en"
,
value
=
"制片人英文名"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"producer_en"
,
value
=
"制片人英文名"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"production_cn"
,
value
=
"制片公司中文"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"production_en"
,
value
=
"制片公司英文"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"format"
,
value
=
"放映格式"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"format"
,
value
=
"放映格式"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"screenplay"
,
value
=
"编剧"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"screenplay"
,
value
=
"编剧"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"director_of_photography"
,
value
=
"摄影指导"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
name
=
"director_of_photography"
,
value
=
"摄影指导"
),
...
...
src/main/java/com/egolm/film/bean/Fc_member_film_ext.java
View file @
e8aa6b43
...
@@ -39,6 +39,12 @@ public class Fc_member_film_ext implements java.io.Serializable {
...
@@ -39,6 +39,12 @@ public class Fc_member_film_ext implements java.io.Serializable {
@Column
(
columnDefinition
=
"varchar(255) COMMENT '制片人英文名'"
)
@Column
(
columnDefinition
=
"varchar(255) COMMENT '制片人英文名'"
)
private
String
producer_en
;
private
String
producer_en
;
@Column
(
columnDefinition
=
"varchar(255) COMMENT '制片公司中文'"
)
private
String
production_cn
;
@Column
(
columnDefinition
=
"varchar(255) COMMENT '制片公司英文'"
)
private
String
production_en
;
@Column
(
columnDefinition
=
"varchar(255) COMMENT '放映格式'"
)
@Column
(
columnDefinition
=
"varchar(255) COMMENT '放映格式'"
)
private
String
format
;
private
String
format
;
...
@@ -160,6 +166,22 @@ public class Fc_member_film_ext implements java.io.Serializable {
...
@@ -160,6 +166,22 @@ public class Fc_member_film_ext implements java.io.Serializable {
return
producer_en
;
return
producer_en
;
}
}
public
void
setProduction_cn
(
String
production_cn
)
{
this
.
production_cn
=
production_cn
;
}
public
String
getProduction_cn
()
{
return
production_cn
;
}
public
void
setProduction_en
(
String
production_en
)
{
this
.
production_en
=
production_en
;
}
public
String
getProduction_en
()
{
return
production_en
;
}
public
void
setFormat
(
String
format
)
{
public
void
setFormat
(
String
format
)
{
this
.
format
=
format
;
this
.
format
=
format
;
}
}
...
...
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