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
c2689e40
Commit
c2689e40
authored
Nov 23, 2018
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xx
parent
c1acf8d0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
126 additions
and
0 deletions
+126
-0
Fc_enroll_type.java
src/main/java/com/egolm/film/bean/Fc_enroll_type.java
+63
-0
Fc_film_type.java
src/main/java/com/egolm/film/bean/Fc_film_type.java
+63
-0
No files found.
src/main/java/com/egolm/film/bean/Fc_enroll_type.java
0 → 100644
View file @
c2689e40
package
com
.
egolm
.
film
.
bean
;
import
javax.persistence.Entity
;
import
javax.persistence.Id
;
/**
* @author 曲欣亮
* @since 2018-11-23
* @version v-1.0
*/
@Entity
(
name
=
"fc_enroll_type"
)
public
class
Fc_enroll_type
implements
java
.
io
.
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 影片性质ID
*/
@Id
private
Integer
enroll_type
;
/**
* 影片性质名称
*/
private
String
enroll_type_name
;
/**
* 无参数构造方法
*/
public
Fc_enroll_type
()
{
super
();
}
/**
* 全参数构造方法
* @param enroll_type 影片性质ID
* @param enroll_type_name 影片性质名称
*/
public
Fc_enroll_type
(
Integer
enroll_type
,
String
enroll_type_name
)
{
this
.
enroll_type
=
enroll_type
;
this
.
enroll_type_name
=
enroll_type_name
;
}
public
void
setEnroll_type
(
Integer
enroll_type
)
{
this
.
enroll_type
=
enroll_type
;
}
public
Integer
getEnroll_type
()
{
return
enroll_type
;
}
public
void
setEnroll_type_name
(
String
enroll_type_name
)
{
this
.
enroll_type_name
=
enroll_type_name
;
}
public
String
getEnroll_type_name
()
{
return
enroll_type_name
;
}
}
src/main/java/com/egolm/film/bean/Fc_film_type.java
0 → 100644
View file @
c2689e40
package
com
.
egolm
.
film
.
bean
;
import
javax.persistence.Entity
;
import
javax.persistence.Id
;
/**
* @author 曲欣亮
* @since 2018-11-23
* @version v-1.0
*/
@Entity
(
name
=
"fc_film_type"
)
public
class
Fc_film_type
implements
java
.
io
.
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 影片类型ID
*/
@Id
private
Integer
film_type
;
/**
* 影片类型名称
*/
private
String
film_type_name
;
/**
* 无参数构造方法
*/
public
Fc_film_type
()
{
super
();
}
/**
* 全参数构造方法
* @param film_type 影片类型ID
* @param film_type_name 影片类型名称
*/
public
Fc_film_type
(
Integer
film_type
,
String
film_type_name
)
{
this
.
film_type
=
film_type
;
this
.
film_type_name
=
film_type_name
;
}
public
void
setFilm_type
(
Integer
film_type
)
{
this
.
film_type
=
film_type
;
}
public
Integer
getFilm_type
()
{
return
film_type
;
}
public
void
setFilm_type_name
(
String
film_type_name
)
{
this
.
film_type_name
=
film_type_name
;
}
public
String
getFilm_type_name
()
{
return
film_type_name
;
}
}
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