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
d0d423f8
Commit
d0d423f8
authored
Dec 18, 2018
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
233f2abe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
97 additions
and
3 deletions
+97
-3
Enum_group.java
src/main/java/com/egolm/film/bean/Enum_group.java
+79
-0
Fc_review.java
src/main/java/com/egolm/film/bean/Fc_review.java
+18
-3
No files found.
src/main/java/com/egolm/film/bean/Enum_group.java
0 → 100644
View file @
d0d423f8
package
com
.
egolm
.
film
.
bean
;
import
javax.persistence.Entity
;
import
javax.persistence.Id
;
/**
* @author 曲欣亮
*/
@Entity
(
name
=
"enum_group"
)
public
class
Enum_group
implements
java
.
io
.
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
@Id
private
Integer
id
;
private
Integer
parent_id
;
private
Integer
order_num
;
private
String
group_name
;
/**
* 无参数构造方法
*/
public
Enum_group
()
{
super
();
}
/**
* 全参数构造方法
* @param id
* @param parent_id
* @param order_num
* @param group_name
*/
public
Enum_group
(
Integer
id
,
Integer
parent_id
,
Integer
order_num
,
String
group_name
)
{
this
.
id
=
id
;
this
.
parent_id
=
parent_id
;
this
.
order_num
=
order_num
;
this
.
group_name
=
group_name
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
Integer
getId
()
{
return
id
;
}
public
void
setParent_id
(
Integer
parent_id
)
{
this
.
parent_id
=
parent_id
;
}
public
Integer
getParent_id
()
{
return
parent_id
;
}
public
void
setOrder_num
(
Integer
order_num
)
{
this
.
order_num
=
order_num
;
}
public
Integer
getOrder_num
()
{
return
order_num
;
}
public
void
setGroup_name
(
String
group_name
)
{
this
.
group_name
=
group_name
;
}
public
String
getGroup_name
()
{
return
group_name
;
}
}
src/main/java/com/egolm/film/bean/Fc_review.java
View file @
d0d423f8
...
...
@@ -22,6 +22,11 @@ public class Fc_review implements java.io.Serializable {
*/
private
Integer
film_id
;
/**
* 终审归档分组ID
*/
private
Integer
group_id
;
/**
* 影片性质(申报奖项)ID
*/
...
...
@@ -43,7 +48,7 @@ public class Fc_review implements java.io.Serializable {
private
Integer
review_state
;
/**
* 评选状态 0未评选 1有争议 2管理员分配 3审片完成
4终审归档
* 评选状态 0未评选 1有争议 2管理员分配 3审片完成
*/
private
Integer
opt_state
;
...
...
@@ -66,17 +71,19 @@ public class Fc_review implements java.io.Serializable {
* 全参数构造方法
* @param id
* @param film_id 参审影片ID
* @param group_id 终审归档分组ID
* @param enroll_type_id 影片性质(申报奖项)ID
* @param review_round 审片轮数,第几轮审片
* @param allot_state 评委分配状态 0未分配评委 1已分配评委评选中
* @param review_state 审片结论 1通过 2否决 3参赛 4参赛备选 5参展
* @param opt_state 评选状态 0未评选 1有争议 2管理员分配 3审片完成
4终审归档
* @param opt_state 评选状态 0未评选 1有争议 2管理员分配 3审片完成
* @param push_time 推送时间
* @param create_time
*/
public
Fc_review
(
Integer
id
,
Integer
film_id
,
Integer
enroll_type_id
,
Integer
review_round
,
Integer
allot_state
,
Integer
review_state
,
Integer
opt_state
,
Date
push_time
,
Date
create_time
)
{
public
Fc_review
(
Integer
id
,
Integer
film_id
,
Integer
group_id
,
Integer
enroll_type_id
,
Integer
review_round
,
Integer
allot_state
,
Integer
review_state
,
Integer
opt_state
,
Date
push_time
,
Date
create_time
)
{
this
.
id
=
id
;
this
.
film_id
=
film_id
;
this
.
group_id
=
group_id
;
this
.
enroll_type_id
=
enroll_type_id
;
this
.
review_round
=
review_round
;
this
.
allot_state
=
allot_state
;
...
...
@@ -102,6 +109,14 @@ public class Fc_review implements java.io.Serializable {
return
film_id
;
}
public
void
setGroup_id
(
Integer
group_id
)
{
this
.
group_id
=
group_id
;
}
public
Integer
getGroup_id
()
{
return
group_id
;
}
public
void
setEnroll_type_id
(
Integer
enroll_type_id
)
{
this
.
enroll_type_id
=
enroll_type_id
;
}
...
...
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