Commit c2689e40 authored by Quxl's avatar Quxl

xx

parent c1acf8d0
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;
}
}
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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment