Commit a7817ea3 authored by Quxl's avatar Quxl

优化数据类型

parent d0a8e3fc
...@@ -13,6 +13,7 @@ import org.springframework.web.bind.annotation.RequestMapping; ...@@ -13,6 +13,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
import com.egolm.common.bean.Rjx; import com.egolm.common.bean.Rjx;
import com.egolm.common.web.ServletUtil;
import com.egolm.film.bean.Fc_member; import com.egolm.film.bean.Fc_member;
import com.egolm.film.common.EmailService; import com.egolm.film.common.EmailService;
import com.egolm.film.common.MemberService; import com.egolm.film.common.MemberService;
...@@ -46,7 +47,17 @@ public class MemberOpenApiController { ...@@ -46,7 +47,17 @@ public class MemberOpenApiController {
@ApiImplicitParam(paramType = "query", dataType = "string", required = true, name = "password"), @ApiImplicitParam(paramType = "query", dataType = "string", required = true, name = "password"),
@ApiImplicitParam(paramType = "query", dataType = "string", required = true, name = "email"), @ApiImplicitParam(paramType = "query", dataType = "string", required = true, name = "email"),
}) })
public Object register(String username, String password, String email) { public Object register(HttpServletRequest request, String username, String password, String email) {
Locale locale = LocaleContextHolder.getLocale();
Fc_member member = new Fc_member();
member.setUsername(username);
member.setPassword(memberService.encodePassword(password));
member.setEmail(email);
member.setCreate_ip(ServletUtil.remoteIp(request));
member.setCreate_time(System.currentTimeMillis());
member.setLang(locale == null ? "zh" : locale.getLanguage());
member.setState(1);
memberService.saveMember(member);
return Rjx.jsonOk(); return Rjx.jsonOk();
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_admin") @Entity(name="fc_admin")
...@@ -60,7 +60,7 @@ public class Fc_admin implements java.io.Serializable { ...@@ -60,7 +60,7 @@ public class Fc_admin implements java.io.Serializable {
/** /**
* 状态 1正常 2禁用 * 状态 1正常 2禁用
*/ */
private Byte state; private Integer state;
/** /**
* 管理员组 * 管理员组
...@@ -101,7 +101,7 @@ public class Fc_admin implements java.io.Serializable { ...@@ -101,7 +101,7 @@ public class Fc_admin implements java.io.Serializable {
* @param create_admin_id 创建者adminid * @param create_admin_id 创建者adminid
* @param token 用户登陆 session_id * @param token 用户登陆 session_id
*/ */
public Fc_admin(Integer adminid, String username, String password, String realname, String salt, Long create_time, String create_ip, Long login_time, String login_ip, Byte state, Integer group_id, Integer create_admin_id, String token) { public Fc_admin(Integer adminid, String username, String password, String realname, String salt, Long create_time, String create_ip, Long login_time, String login_ip, Integer state, Integer group_id, Integer create_admin_id, String token) {
this.adminid = adminid; this.adminid = adminid;
this.username = username; this.username = username;
this.password = password; this.password = password;
...@@ -189,11 +189,11 @@ public class Fc_admin implements java.io.Serializable { ...@@ -189,11 +189,11 @@ public class Fc_admin implements java.io.Serializable {
return login_ip; return login_ip;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_admin_group") @Entity(name="fc_admin_group")
...@@ -43,7 +43,7 @@ public class Fc_admin_group implements java.io.Serializable { ...@@ -43,7 +43,7 @@ public class Fc_admin_group implements java.io.Serializable {
/** /**
* 小组状态 * 小组状态
*/ */
private Byte state; private Integer state;
/** /**
* 权限 * 权限
...@@ -80,7 +80,7 @@ public class Fc_admin_group implements java.io.Serializable { ...@@ -80,7 +80,7 @@ public class Fc_admin_group implements java.io.Serializable {
* @param user_num 成员数量 * @param user_num 成员数量
* @param group_power 群组权限 * @param group_power 群组权限
*/ */
public Fc_admin_group(Integer group_id, String group_name, Long create_time, String create_ip, Integer adminid, Byte state, String power, Long user_num, String group_power) { public Fc_admin_group(Integer group_id, String group_name, Long create_time, String create_ip, Integer adminid, Integer state, String power, Long user_num, String group_power) {
this.group_id = group_id; this.group_id = group_id;
this.group_name = group_name; this.group_name = group_name;
this.create_time = create_time; this.create_time = create_time;
...@@ -132,11 +132,11 @@ public class Fc_admin_group implements java.io.Serializable { ...@@ -132,11 +132,11 @@ public class Fc_admin_group implements java.io.Serializable {
return adminid; return adminid;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_admin_logs") @Entity(name="fc_admin_logs")
...@@ -20,7 +20,7 @@ public class Fc_admin_logs implements java.io.Serializable { ...@@ -20,7 +20,7 @@ public class Fc_admin_logs implements java.io.Serializable {
@Id @Id
private Long log_id; private Long log_id;
private Byte log_type; private Integer log_type;
private Long log_time; private Long log_time;
...@@ -74,7 +74,7 @@ public class Fc_admin_logs implements java.io.Serializable { ...@@ -74,7 +74,7 @@ public class Fc_admin_logs implements java.io.Serializable {
* @param user_agent 浏览器类型 * @param user_agent 浏览器类型
* @param relation_id 关联id * @param relation_id 关联id
*/ */
public Fc_admin_logs(Long log_id, Byte log_type, Long log_time, String log_content, String log_ip, Long adminid, Integer group_id, String user_agent, Long relation_id) { public Fc_admin_logs(Long log_id, Integer log_type, Long log_time, String log_content, String log_ip, Long adminid, Integer group_id, String user_agent, Long relation_id) {
this.log_id = log_id; this.log_id = log_id;
this.log_type = log_type; this.log_type = log_type;
this.log_time = log_time; this.log_time = log_time;
...@@ -94,11 +94,11 @@ public class Fc_admin_logs implements java.io.Serializable { ...@@ -94,11 +94,11 @@ public class Fc_admin_logs implements java.io.Serializable {
return log_id; return log_id;
} }
public void setLog_type(Byte log_type) { public void setLog_type(Integer log_type) {
this.log_type = log_type; this.log_type = log_type;
} }
public Byte getLog_type() { public Integer getLog_type() {
return log_type; return log_type;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_excel_state") @Entity(name="fc_excel_state")
...@@ -21,7 +21,7 @@ public class Fc_excel_state implements java.io.Serializable { ...@@ -21,7 +21,7 @@ public class Fc_excel_state implements java.io.Serializable {
private String intro; private String intro;
private Short state; private Integer state;
/** /**
...@@ -38,7 +38,7 @@ public class Fc_excel_state implements java.io.Serializable { ...@@ -38,7 +38,7 @@ public class Fc_excel_state implements java.io.Serializable {
* @param intro * @param intro
* @param state * @param state
*/ */
public Fc_excel_state(Integer id, String type_name, String intro, Short state) { public Fc_excel_state(Integer id, String type_name, String intro, Integer state) {
this.id = id; this.id = id;
this.type_name = type_name; this.type_name = type_name;
this.intro = intro; this.intro = intro;
...@@ -69,11 +69,11 @@ public class Fc_excel_state implements java.io.Serializable { ...@@ -69,11 +69,11 @@ public class Fc_excel_state implements java.io.Serializable {
return intro; return intro;
} }
public void setState(Short state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Short getState() { public Integer getState() {
return state; return state;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_file_check") @Entity(name="fc_file_check")
...@@ -28,7 +28,7 @@ public class Fc_file_check implements java.io.Serializable { ...@@ -28,7 +28,7 @@ public class Fc_file_check implements java.io.Serializable {
/** /**
* 1 是 2 目录 * 1 是 2 目录
*/ */
private Byte is_file; private Integer is_file;
/** /**
* 父类id * 父类id
...@@ -62,7 +62,7 @@ public class Fc_file_check implements java.io.Serializable { ...@@ -62,7 +62,7 @@ public class Fc_file_check implements java.io.Serializable {
* @param file_md5 文件MD5值 * @param file_md5 文件MD5值
* @param full_path 全路径,值针对项目路径而言 * @param full_path 全路径,值针对项目路径而言
*/ */
public Fc_file_check(Integer id, String name, Byte is_file, Integer parent_id, String file_md5, String full_path) { public Fc_file_check(Integer id, String name, Integer is_file, Integer parent_id, String file_md5, String full_path) {
this.id = id; this.id = id;
this.name = name; this.name = name;
this.is_file = is_file; this.is_file = is_file;
...@@ -87,11 +87,11 @@ public class Fc_file_check implements java.io.Serializable { ...@@ -87,11 +87,11 @@ public class Fc_file_check implements java.io.Serializable {
return name; return name;
} }
public void setIs_file(Byte is_file) { public void setIs_file(Integer is_file) {
this.is_file = is_file; this.is_file = is_file;
} }
public Byte getIs_file() { public Integer getIs_file() {
return is_file; return is_file;
} }
......
...@@ -7,8 +7,8 @@ import javax.persistence.Id; ...@@ -7,8 +7,8 @@ import javax.persistence.Id;
import java.util.Date; import java.util.Date;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film") @Entity(name="fc_film")
...@@ -42,7 +42,7 @@ public class Fc_film implements java.io.Serializable { ...@@ -42,7 +42,7 @@ public class Fc_film implements java.io.Serializable {
/** /**
* 类型 1 电影 2电视 * 类型 1 电影 2电视
*/ */
private Byte type; private Integer type;
/** /**
* 影片内容分组id * 影片内容分组id
...@@ -137,12 +137,12 @@ public class Fc_film implements java.io.Serializable { ...@@ -137,12 +137,12 @@ public class Fc_film implements java.io.Serializable {
/** /**
* 报名类型 * 报名类型
*/ */
private Byte enroll_type; private Integer enroll_type;
/** /**
* 是否愿意参展 * 是否愿意参展
*/ */
private Byte is_like_show; private Integer is_like_show;
/** /**
* 首映地 * 首映地
...@@ -177,7 +177,7 @@ public class Fc_film implements java.io.Serializable { ...@@ -177,7 +177,7 @@ public class Fc_film implements java.io.Serializable {
/** /**
* 状态 * 状态
*/ */
private Byte state; private Integer state;
/** /**
* 颜色标签 * 颜色标签
...@@ -187,17 +187,17 @@ public class Fc_film implements java.io.Serializable { ...@@ -187,17 +187,17 @@ public class Fc_film implements java.io.Serializable {
/** /**
* 当前审核环节 * 当前审核环节
*/ */
private Byte round; private Integer round;
/** /**
* 本环节最后 0不是 1是 * 本环节最后 0不是 1是
*/ */
private Byte is_round_last; private Integer is_round_last;
/** /**
* 是否分配 1已分配 2未分配 * 是否分配 1已分配 2未分配
*/ */
private Byte is_allot; private Integer is_allot;
/** /**
* 已分配人数 * 已分配人数
...@@ -351,7 +351,7 @@ public class Fc_film implements java.io.Serializable { ...@@ -351,7 +351,7 @@ public class Fc_film implements java.io.Serializable {
/** /**
* 状态 0正常 1关闭 2删除 * 状态 0正常 1关闭 2删除
*/ */
private Byte status; private Integer status;
/** /**
* 片方要求 * 片方要求
...@@ -376,7 +376,7 @@ public class Fc_film implements java.io.Serializable { ...@@ -376,7 +376,7 @@ public class Fc_film implements java.io.Serializable {
/** /**
* 是否排片 1未排 2已排 * 是否排片 1未排 2已排
*/ */
private Byte is_plan; private Integer is_plan;
/** /**
* 特殊要求 * 特殊要求
...@@ -386,12 +386,12 @@ public class Fc_film implements java.io.Serializable { ...@@ -386,12 +386,12 @@ public class Fc_film implements java.io.Serializable {
/** /**
* 是否存在特殊要求 0没有 1有 * 是否存在特殊要求 0没有 1有
*/ */
private Byte has_special_demand; private Integer has_special_demand;
/** /**
* 是否显示 1显示 2不显示 * 是否显示 1显示 2不显示
*/ */
private Byte is_show; private Integer is_show;
/** /**
* 已排片数量 * 已排片数量
...@@ -577,7 +577,7 @@ public class Fc_film implements java.io.Serializable { ...@@ -577,7 +577,7 @@ public class Fc_film implements java.io.Serializable {
* @param is_notice 是否提示 * @param is_notice 是否提示
* @param is_emphasis 是否重点 * @param is_emphasis 是否重点
*/ */
public Fc_film(Long id, String film_no, String origion_name, String en_name, String cn_name, Byte type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String en_director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Byte enroll_type, Byte is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Byte state, String color_tag, Byte round, Byte is_round_last, Byte is_allot, Integer allot_num, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, String section_award_7, String section_award_8, Long last_modify_time, Integer is_edit_state, String is_edit_reason, Integer allot_num_1, Integer allot_num_2, Integer allot_num_3, Integer allot_num_4, Integer allot_num_5, Integer allot_num_6, String film_district, String director_intro_en, String director_intro, String director_photo, String stills, Byte status, String film_side_demand, String copy_status, String film_total_time, String late_at_night, Byte is_plan, String special_demand, Byte has_special_demand, Byte is_show, Integer plan_number, String film_side_demand_playtime, Integer has_played_number, String id_copy_format, String other_demand, Integer copy_get_time, Integer copy_back_time, String audience_meeting, String is_samples_arrived, String has_sign_key, String film_cn_country, Date last_update_time, String film_type_en_name, String film_online_address, String film_online_password, Integer is_notice, Integer is_emphasis) { public Fc_film(Long id, String film_no, String origion_name, String en_name, String cn_name, Integer type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String en_director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Integer enroll_type, Integer is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Integer state, String color_tag, Integer round, Integer is_round_last, Integer is_allot, Integer allot_num, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, String section_award_7, String section_award_8, Long last_modify_time, Integer is_edit_state, String is_edit_reason, Integer allot_num_1, Integer allot_num_2, Integer allot_num_3, Integer allot_num_4, Integer allot_num_5, Integer allot_num_6, String film_district, String director_intro_en, String director_intro, String director_photo, String stills, Integer status, String film_side_demand, String copy_status, String film_total_time, String late_at_night, Integer is_plan, String special_demand, Integer has_special_demand, Integer is_show, Integer plan_number, String film_side_demand_playtime, Integer has_played_number, String id_copy_format, String other_demand, Integer copy_get_time, Integer copy_back_time, String audience_meeting, String is_samples_arrived, String has_sign_key, String film_cn_country, Date last_update_time, String film_type_en_name, String film_online_address, String film_online_password, Integer is_notice, Integer is_emphasis) {
this.id = id; this.id = id;
this.film_no = film_no; this.film_no = film_no;
this.origion_name = origion_name; this.origion_name = origion_name;
...@@ -714,11 +714,11 @@ public class Fc_film implements java.io.Serializable { ...@@ -714,11 +714,11 @@ public class Fc_film implements java.io.Serializable {
return cn_name; return cn_name;
} }
public void setType(Byte type) { public void setType(Integer type) {
this.type = type; this.type = type;
} }
public Byte getType() { public Integer getType() {
return type; return type;
} }
...@@ -866,19 +866,19 @@ public class Fc_film implements java.io.Serializable { ...@@ -866,19 +866,19 @@ public class Fc_film implements java.io.Serializable {
return enroll_type_name; return enroll_type_name;
} }
public void setEnroll_type(Byte enroll_type) { public void setEnroll_type(Integer enroll_type) {
this.enroll_type = enroll_type; this.enroll_type = enroll_type;
} }
public Byte getEnroll_type() { public Integer getEnroll_type() {
return enroll_type; return enroll_type;
} }
public void setIs_like_show(Byte is_like_show) { public void setIs_like_show(Integer is_like_show) {
this.is_like_show = is_like_show; this.is_like_show = is_like_show;
} }
public Byte getIs_like_show() { public Integer getIs_like_show() {
return is_like_show; return is_like_show;
} }
...@@ -930,11 +930,11 @@ public class Fc_film implements java.io.Serializable { ...@@ -930,11 +930,11 @@ public class Fc_film implements java.io.Serializable {
return create_ip; return create_ip;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
...@@ -946,27 +946,27 @@ public class Fc_film implements java.io.Serializable { ...@@ -946,27 +946,27 @@ public class Fc_film implements java.io.Serializable {
return color_tag; return color_tag;
} }
public void setRound(Byte round) { public void setRound(Integer round) {
this.round = round; this.round = round;
} }
public Byte getRound() { public Integer getRound() {
return round; return round;
} }
public void setIs_round_last(Byte is_round_last) { public void setIs_round_last(Integer is_round_last) {
this.is_round_last = is_round_last; this.is_round_last = is_round_last;
} }
public Byte getIs_round_last() { public Integer getIs_round_last() {
return is_round_last; return is_round_last;
} }
public void setIs_allot(Byte is_allot) { public void setIs_allot(Integer is_allot) {
this.is_allot = is_allot; this.is_allot = is_allot;
} }
public Byte getIs_allot() { public Integer getIs_allot() {
return is_allot; return is_allot;
} }
...@@ -1218,11 +1218,11 @@ public class Fc_film implements java.io.Serializable { ...@@ -1218,11 +1218,11 @@ public class Fc_film implements java.io.Serializable {
return stills; return stills;
} }
public void setStatus(Byte status) { public void setStatus(Integer status) {
this.status = status; this.status = status;
} }
public Byte getStatus() { public Integer getStatus() {
return status; return status;
} }
...@@ -1258,11 +1258,11 @@ public class Fc_film implements java.io.Serializable { ...@@ -1258,11 +1258,11 @@ public class Fc_film implements java.io.Serializable {
return late_at_night; return late_at_night;
} }
public void setIs_plan(Byte is_plan) { public void setIs_plan(Integer is_plan) {
this.is_plan = is_plan; this.is_plan = is_plan;
} }
public Byte getIs_plan() { public Integer getIs_plan() {
return is_plan; return is_plan;
} }
...@@ -1274,19 +1274,19 @@ public class Fc_film implements java.io.Serializable { ...@@ -1274,19 +1274,19 @@ public class Fc_film implements java.io.Serializable {
return special_demand; return special_demand;
} }
public void setHas_special_demand(Byte has_special_demand) { public void setHas_special_demand(Integer has_special_demand) {
this.has_special_demand = has_special_demand; this.has_special_demand = has_special_demand;
} }
public Byte getHas_special_demand() { public Integer getHas_special_demand() {
return has_special_demand; return has_special_demand;
} }
public void setIs_show(Byte is_show) { public void setIs_show(Integer is_show) {
this.is_show = is_show; this.is_show = is_show;
} }
public Byte getIs_show() { public Integer getIs_show() {
return is_show; return is_show;
} }
......
...@@ -7,8 +7,8 @@ import javax.persistence.Id; ...@@ -7,8 +7,8 @@ import javax.persistence.Id;
import java.util.Date; import java.util.Date;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_5_30") @Entity(name="fc_film_5_30")
...@@ -42,7 +42,7 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -42,7 +42,7 @@ public class Fc_film_5_30 implements java.io.Serializable {
/** /**
* 类型 1 电影 2电视 * 类型 1 电影 2电视
*/ */
private Byte type; private Integer type;
/** /**
* 影片内容分组id * 影片内容分组id
...@@ -137,12 +137,12 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -137,12 +137,12 @@ public class Fc_film_5_30 implements java.io.Serializable {
/** /**
* 报名类型 * 报名类型
*/ */
private Byte enroll_type; private Integer enroll_type;
/** /**
* 是否愿意参展 * 是否愿意参展
*/ */
private Byte is_like_show; private Integer is_like_show;
/** /**
* 首映地 * 首映地
...@@ -177,7 +177,7 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -177,7 +177,7 @@ public class Fc_film_5_30 implements java.io.Serializable {
/** /**
* 状态 * 状态
*/ */
private Byte state; private Integer state;
/** /**
* 颜色标签 * 颜色标签
...@@ -187,17 +187,17 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -187,17 +187,17 @@ public class Fc_film_5_30 implements java.io.Serializable {
/** /**
* 当前审核环节 * 当前审核环节
*/ */
private Byte round; private Integer round;
/** /**
* 本环节最后 0不是 1是 * 本环节最后 0不是 1是
*/ */
private Byte is_round_last; private Integer is_round_last;
/** /**
* 是否分配 1已分配 2未分配 * 是否分配 1已分配 2未分配
*/ */
private Byte is_allot; private Integer is_allot;
/** /**
* 已分配人数 * 已分配人数
...@@ -351,7 +351,7 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -351,7 +351,7 @@ public class Fc_film_5_30 implements java.io.Serializable {
/** /**
* 状态 0正常 1关闭 2删除 * 状态 0正常 1关闭 2删除
*/ */
private Byte status; private Integer status;
/** /**
* 片方要求 * 片方要求
...@@ -376,7 +376,7 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -376,7 +376,7 @@ public class Fc_film_5_30 implements java.io.Serializable {
/** /**
* 是否排片 1未排 2已排 * 是否排片 1未排 2已排
*/ */
private Byte is_plan; private Integer is_plan;
/** /**
* 特殊要求 * 特殊要求
...@@ -386,12 +386,12 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -386,12 +386,12 @@ public class Fc_film_5_30 implements java.io.Serializable {
/** /**
* 是否存在特殊要求 0没有 1有 * 是否存在特殊要求 0没有 1有
*/ */
private Byte has_special_demand; private Integer has_special_demand;
/** /**
* 是否显示 1显示 2不显示 * 是否显示 1显示 2不显示
*/ */
private Byte is_show; private Integer is_show;
/** /**
* 已排片数量 * 已排片数量
...@@ -577,7 +577,7 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -577,7 +577,7 @@ public class Fc_film_5_30 implements java.io.Serializable {
* @param is_notice 是否提示 * @param is_notice 是否提示
* @param is_emphasis 是否重点 * @param is_emphasis 是否重点
*/ */
public Fc_film_5_30(Long id, String film_no, String origion_name, String en_name, String cn_name, Byte type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String en_director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Byte enroll_type, Byte is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Byte state, String color_tag, Byte round, Byte is_round_last, Byte is_allot, Integer allot_num, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, String section_award_7, String section_award_8, Long last_modify_time, Integer is_edit_state, String is_edit_reason, Integer allot_num_1, Integer allot_num_2, Integer allot_num_3, Integer allot_num_4, Integer allot_num_5, Integer allot_num_6, String film_district, String director_intro_en, String director_intro, String director_photo, String stills, Byte status, String film_side_demand, String copy_status, String film_total_time, String late_at_night, Byte is_plan, String special_demand, Byte has_special_demand, Byte is_show, Integer plan_number, String film_side_demand_playtime, Integer has_played_number, String id_copy_format, String other_demand, Integer copy_get_time, Integer copy_back_time, String audience_meeting, String is_samples_arrived, String has_sign_key, String film_cn_country, Date last_update_time, String film_type_en_name, String film_online_address, String film_online_password, Integer is_notice, Integer is_emphasis) { public Fc_film_5_30(Long id, String film_no, String origion_name, String en_name, String cn_name, Integer type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String en_director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Integer enroll_type, Integer is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Integer state, String color_tag, Integer round, Integer is_round_last, Integer is_allot, Integer allot_num, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, String section_award_7, String section_award_8, Long last_modify_time, Integer is_edit_state, String is_edit_reason, Integer allot_num_1, Integer allot_num_2, Integer allot_num_3, Integer allot_num_4, Integer allot_num_5, Integer allot_num_6, String film_district, String director_intro_en, String director_intro, String director_photo, String stills, Integer status, String film_side_demand, String copy_status, String film_total_time, String late_at_night, Integer is_plan, String special_demand, Integer has_special_demand, Integer is_show, Integer plan_number, String film_side_demand_playtime, Integer has_played_number, String id_copy_format, String other_demand, Integer copy_get_time, Integer copy_back_time, String audience_meeting, String is_samples_arrived, String has_sign_key, String film_cn_country, Date last_update_time, String film_type_en_name, String film_online_address, String film_online_password, Integer is_notice, Integer is_emphasis) {
this.id = id; this.id = id;
this.film_no = film_no; this.film_no = film_no;
this.origion_name = origion_name; this.origion_name = origion_name;
...@@ -714,11 +714,11 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -714,11 +714,11 @@ public class Fc_film_5_30 implements java.io.Serializable {
return cn_name; return cn_name;
} }
public void setType(Byte type) { public void setType(Integer type) {
this.type = type; this.type = type;
} }
public Byte getType() { public Integer getType() {
return type; return type;
} }
...@@ -866,19 +866,19 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -866,19 +866,19 @@ public class Fc_film_5_30 implements java.io.Serializable {
return enroll_type_name; return enroll_type_name;
} }
public void setEnroll_type(Byte enroll_type) { public void setEnroll_type(Integer enroll_type) {
this.enroll_type = enroll_type; this.enroll_type = enroll_type;
} }
public Byte getEnroll_type() { public Integer getEnroll_type() {
return enroll_type; return enroll_type;
} }
public void setIs_like_show(Byte is_like_show) { public void setIs_like_show(Integer is_like_show) {
this.is_like_show = is_like_show; this.is_like_show = is_like_show;
} }
public Byte getIs_like_show() { public Integer getIs_like_show() {
return is_like_show; return is_like_show;
} }
...@@ -930,11 +930,11 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -930,11 +930,11 @@ public class Fc_film_5_30 implements java.io.Serializable {
return create_ip; return create_ip;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
...@@ -946,27 +946,27 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -946,27 +946,27 @@ public class Fc_film_5_30 implements java.io.Serializable {
return color_tag; return color_tag;
} }
public void setRound(Byte round) { public void setRound(Integer round) {
this.round = round; this.round = round;
} }
public Byte getRound() { public Integer getRound() {
return round; return round;
} }
public void setIs_round_last(Byte is_round_last) { public void setIs_round_last(Integer is_round_last) {
this.is_round_last = is_round_last; this.is_round_last = is_round_last;
} }
public Byte getIs_round_last() { public Integer getIs_round_last() {
return is_round_last; return is_round_last;
} }
public void setIs_allot(Byte is_allot) { public void setIs_allot(Integer is_allot) {
this.is_allot = is_allot; this.is_allot = is_allot;
} }
public Byte getIs_allot() { public Integer getIs_allot() {
return is_allot; return is_allot;
} }
...@@ -1218,11 +1218,11 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -1218,11 +1218,11 @@ public class Fc_film_5_30 implements java.io.Serializable {
return stills; return stills;
} }
public void setStatus(Byte status) { public void setStatus(Integer status) {
this.status = status; this.status = status;
} }
public Byte getStatus() { public Integer getStatus() {
return status; return status;
} }
...@@ -1258,11 +1258,11 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -1258,11 +1258,11 @@ public class Fc_film_5_30 implements java.io.Serializable {
return late_at_night; return late_at_night;
} }
public void setIs_plan(Byte is_plan) { public void setIs_plan(Integer is_plan) {
this.is_plan = is_plan; this.is_plan = is_plan;
} }
public Byte getIs_plan() { public Integer getIs_plan() {
return is_plan; return is_plan;
} }
...@@ -1274,19 +1274,19 @@ public class Fc_film_5_30 implements java.io.Serializable { ...@@ -1274,19 +1274,19 @@ public class Fc_film_5_30 implements java.io.Serializable {
return special_demand; return special_demand;
} }
public void setHas_special_demand(Byte has_special_demand) { public void setHas_special_demand(Integer has_special_demand) {
this.has_special_demand = has_special_demand; this.has_special_demand = has_special_demand;
} }
public Byte getHas_special_demand() { public Integer getHas_special_demand() {
return has_special_demand; return has_special_demand;
} }
public void setIs_show(Byte is_show) { public void setIs_show(Integer is_show) {
this.is_show = is_show; this.is_show = is_show;
} }
public Byte getIs_show() { public Integer getIs_show() {
return is_show; return is_show;
} }
......
...@@ -7,8 +7,8 @@ import javax.persistence.Id; ...@@ -7,8 +7,8 @@ import javax.persistence.Id;
import java.util.Date; import java.util.Date;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_5_31") @Entity(name="fc_film_5_31")
...@@ -42,7 +42,7 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -42,7 +42,7 @@ public class Fc_film_5_31 implements java.io.Serializable {
/** /**
* 类型 1 电影 2电视 * 类型 1 电影 2电视
*/ */
private Byte type; private Integer type;
/** /**
* 影片内容分组id * 影片内容分组id
...@@ -137,12 +137,12 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -137,12 +137,12 @@ public class Fc_film_5_31 implements java.io.Serializable {
/** /**
* 报名类型 * 报名类型
*/ */
private Byte enroll_type; private Integer enroll_type;
/** /**
* 是否愿意参展 * 是否愿意参展
*/ */
private Byte is_like_show; private Integer is_like_show;
/** /**
* 首映地 * 首映地
...@@ -177,7 +177,7 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -177,7 +177,7 @@ public class Fc_film_5_31 implements java.io.Serializable {
/** /**
* 状态 * 状态
*/ */
private Byte state; private Integer state;
/** /**
* 颜色标签 * 颜色标签
...@@ -187,17 +187,17 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -187,17 +187,17 @@ public class Fc_film_5_31 implements java.io.Serializable {
/** /**
* 当前审核环节 * 当前审核环节
*/ */
private Byte round; private Integer round;
/** /**
* 本环节最后 0不是 1是 * 本环节最后 0不是 1是
*/ */
private Byte is_round_last; private Integer is_round_last;
/** /**
* 是否分配 1已分配 2未分配 * 是否分配 1已分配 2未分配
*/ */
private Byte is_allot; private Integer is_allot;
/** /**
* 已分配人数 * 已分配人数
...@@ -351,7 +351,7 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -351,7 +351,7 @@ public class Fc_film_5_31 implements java.io.Serializable {
/** /**
* 状态 0正常 1关闭 2删除 * 状态 0正常 1关闭 2删除
*/ */
private Byte status; private Integer status;
/** /**
* 片方要求 * 片方要求
...@@ -376,7 +376,7 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -376,7 +376,7 @@ public class Fc_film_5_31 implements java.io.Serializable {
/** /**
* 是否排片 1未排 2已排 * 是否排片 1未排 2已排
*/ */
private Byte is_plan; private Integer is_plan;
/** /**
* 特殊要求 * 特殊要求
...@@ -386,12 +386,12 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -386,12 +386,12 @@ public class Fc_film_5_31 implements java.io.Serializable {
/** /**
* 是否存在特殊要求 0没有 1有 * 是否存在特殊要求 0没有 1有
*/ */
private Byte has_special_demand; private Integer has_special_demand;
/** /**
* 是否显示 1显示 2不显示 * 是否显示 1显示 2不显示
*/ */
private Byte is_show; private Integer is_show;
/** /**
* 已排片数量 * 已排片数量
...@@ -577,7 +577,7 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -577,7 +577,7 @@ public class Fc_film_5_31 implements java.io.Serializable {
* @param is_notice 是否提示 * @param is_notice 是否提示
* @param is_emphasis 是否重点 * @param is_emphasis 是否重点
*/ */
public Fc_film_5_31(Long id, String film_no, String origion_name, String en_name, String cn_name, Byte type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String en_director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Byte enroll_type, Byte is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Byte state, String color_tag, Byte round, Byte is_round_last, Byte is_allot, Integer allot_num, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, String section_award_7, String section_award_8, Long last_modify_time, Integer is_edit_state, String is_edit_reason, Integer allot_num_1, Integer allot_num_2, Integer allot_num_3, Integer allot_num_4, Integer allot_num_5, Integer allot_num_6, String film_district, String director_intro_en, String director_intro, String director_photo, String stills, Byte status, String film_side_demand, String copy_status, String film_total_time, String late_at_night, Byte is_plan, String special_demand, Byte has_special_demand, Byte is_show, Integer plan_number, String film_side_demand_playtime, Integer has_played_number, String id_copy_format, String other_demand, Integer copy_get_time, Integer copy_back_time, String audience_meeting, String is_samples_arrived, String has_sign_key, String film_cn_country, Date last_update_time, String film_type_en_name, String film_online_address, String film_online_password, Integer is_notice, Integer is_emphasis) { public Fc_film_5_31(Long id, String film_no, String origion_name, String en_name, String cn_name, Integer type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String en_director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Integer enroll_type, Integer is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Integer state, String color_tag, Integer round, Integer is_round_last, Integer is_allot, Integer allot_num, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, String section_award_7, String section_award_8, Long last_modify_time, Integer is_edit_state, String is_edit_reason, Integer allot_num_1, Integer allot_num_2, Integer allot_num_3, Integer allot_num_4, Integer allot_num_5, Integer allot_num_6, String film_district, String director_intro_en, String director_intro, String director_photo, String stills, Integer status, String film_side_demand, String copy_status, String film_total_time, String late_at_night, Integer is_plan, String special_demand, Integer has_special_demand, Integer is_show, Integer plan_number, String film_side_demand_playtime, Integer has_played_number, String id_copy_format, String other_demand, Integer copy_get_time, Integer copy_back_time, String audience_meeting, String is_samples_arrived, String has_sign_key, String film_cn_country, Date last_update_time, String film_type_en_name, String film_online_address, String film_online_password, Integer is_notice, Integer is_emphasis) {
this.id = id; this.id = id;
this.film_no = film_no; this.film_no = film_no;
this.origion_name = origion_name; this.origion_name = origion_name;
...@@ -714,11 +714,11 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -714,11 +714,11 @@ public class Fc_film_5_31 implements java.io.Serializable {
return cn_name; return cn_name;
} }
public void setType(Byte type) { public void setType(Integer type) {
this.type = type; this.type = type;
} }
public Byte getType() { public Integer getType() {
return type; return type;
} }
...@@ -866,19 +866,19 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -866,19 +866,19 @@ public class Fc_film_5_31 implements java.io.Serializable {
return enroll_type_name; return enroll_type_name;
} }
public void setEnroll_type(Byte enroll_type) { public void setEnroll_type(Integer enroll_type) {
this.enroll_type = enroll_type; this.enroll_type = enroll_type;
} }
public Byte getEnroll_type() { public Integer getEnroll_type() {
return enroll_type; return enroll_type;
} }
public void setIs_like_show(Byte is_like_show) { public void setIs_like_show(Integer is_like_show) {
this.is_like_show = is_like_show; this.is_like_show = is_like_show;
} }
public Byte getIs_like_show() { public Integer getIs_like_show() {
return is_like_show; return is_like_show;
} }
...@@ -930,11 +930,11 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -930,11 +930,11 @@ public class Fc_film_5_31 implements java.io.Serializable {
return create_ip; return create_ip;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
...@@ -946,27 +946,27 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -946,27 +946,27 @@ public class Fc_film_5_31 implements java.io.Serializable {
return color_tag; return color_tag;
} }
public void setRound(Byte round) { public void setRound(Integer round) {
this.round = round; this.round = round;
} }
public Byte getRound() { public Integer getRound() {
return round; return round;
} }
public void setIs_round_last(Byte is_round_last) { public void setIs_round_last(Integer is_round_last) {
this.is_round_last = is_round_last; this.is_round_last = is_round_last;
} }
public Byte getIs_round_last() { public Integer getIs_round_last() {
return is_round_last; return is_round_last;
} }
public void setIs_allot(Byte is_allot) { public void setIs_allot(Integer is_allot) {
this.is_allot = is_allot; this.is_allot = is_allot;
} }
public Byte getIs_allot() { public Integer getIs_allot() {
return is_allot; return is_allot;
} }
...@@ -1218,11 +1218,11 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -1218,11 +1218,11 @@ public class Fc_film_5_31 implements java.io.Serializable {
return stills; return stills;
} }
public void setStatus(Byte status) { public void setStatus(Integer status) {
this.status = status; this.status = status;
} }
public Byte getStatus() { public Integer getStatus() {
return status; return status;
} }
...@@ -1258,11 +1258,11 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -1258,11 +1258,11 @@ public class Fc_film_5_31 implements java.io.Serializable {
return late_at_night; return late_at_night;
} }
public void setIs_plan(Byte is_plan) { public void setIs_plan(Integer is_plan) {
this.is_plan = is_plan; this.is_plan = is_plan;
} }
public Byte getIs_plan() { public Integer getIs_plan() {
return is_plan; return is_plan;
} }
...@@ -1274,19 +1274,19 @@ public class Fc_film_5_31 implements java.io.Serializable { ...@@ -1274,19 +1274,19 @@ public class Fc_film_5_31 implements java.io.Serializable {
return special_demand; return special_demand;
} }
public void setHas_special_demand(Byte has_special_demand) { public void setHas_special_demand(Integer has_special_demand) {
this.has_special_demand = has_special_demand; this.has_special_demand = has_special_demand;
} }
public Byte getHas_special_demand() { public Integer getHas_special_demand() {
return has_special_demand; return has_special_demand;
} }
public void setIs_show(Byte is_show) { public void setIs_show(Integer is_show) {
this.is_show = is_show; this.is_show = is_show;
} }
public Byte getIs_show() { public Integer getIs_show() {
return is_show; return is_show;
} }
......
...@@ -7,8 +7,8 @@ import javax.persistence.Id; ...@@ -7,8 +7,8 @@ import javax.persistence.Id;
import java.util.Date; import java.util.Date;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_6_8") @Entity(name="fc_film_6_8")
...@@ -42,7 +42,7 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -42,7 +42,7 @@ public class Fc_film_6_8 implements java.io.Serializable {
/** /**
* 类型 1 电影 2电视 * 类型 1 电影 2电视
*/ */
private Byte type; private Integer type;
/** /**
* 影片内容分组id * 影片内容分组id
...@@ -137,12 +137,12 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -137,12 +137,12 @@ public class Fc_film_6_8 implements java.io.Serializable {
/** /**
* 报名类型 * 报名类型
*/ */
private Byte enroll_type; private Integer enroll_type;
/** /**
* 是否愿意参展 * 是否愿意参展
*/ */
private Byte is_like_show; private Integer is_like_show;
/** /**
* 首映地 * 首映地
...@@ -177,7 +177,7 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -177,7 +177,7 @@ public class Fc_film_6_8 implements java.io.Serializable {
/** /**
* 状态 * 状态
*/ */
private Byte state; private Integer state;
/** /**
* 颜色标签 * 颜色标签
...@@ -187,17 +187,17 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -187,17 +187,17 @@ public class Fc_film_6_8 implements java.io.Serializable {
/** /**
* 当前审核环节 * 当前审核环节
*/ */
private Byte round; private Integer round;
/** /**
* 本环节最后 0不是 1是 * 本环节最后 0不是 1是
*/ */
private Byte is_round_last; private Integer is_round_last;
/** /**
* 是否分配 1已分配 2未分配 * 是否分配 1已分配 2未分配
*/ */
private Byte is_allot; private Integer is_allot;
/** /**
* 已分配人数 * 已分配人数
...@@ -351,7 +351,7 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -351,7 +351,7 @@ public class Fc_film_6_8 implements java.io.Serializable {
/** /**
* 状态 0正常 1关闭 2删除 * 状态 0正常 1关闭 2删除
*/ */
private Byte status; private Integer status;
/** /**
* 片方要求 * 片方要求
...@@ -376,7 +376,7 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -376,7 +376,7 @@ public class Fc_film_6_8 implements java.io.Serializable {
/** /**
* 是否排片 1未排 2已排 * 是否排片 1未排 2已排
*/ */
private Byte is_plan; private Integer is_plan;
/** /**
* 特殊要求 * 特殊要求
...@@ -386,12 +386,12 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -386,12 +386,12 @@ public class Fc_film_6_8 implements java.io.Serializable {
/** /**
* 是否存在特殊要求 0没有 1有 * 是否存在特殊要求 0没有 1有
*/ */
private Byte has_special_demand; private Integer has_special_demand;
/** /**
* 是否显示 1显示 2不显示 * 是否显示 1显示 2不显示
*/ */
private Byte is_show; private Integer is_show;
/** /**
* 已排片数量 * 已排片数量
...@@ -577,7 +577,7 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -577,7 +577,7 @@ public class Fc_film_6_8 implements java.io.Serializable {
* @param is_notice 是否提示 * @param is_notice 是否提示
* @param is_emphasis 是否重点 * @param is_emphasis 是否重点
*/ */
public Fc_film_6_8(Long id, String film_no, String origion_name, String en_name, String cn_name, Byte type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String en_director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Byte enroll_type, Byte is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Byte state, String color_tag, Byte round, Byte is_round_last, Byte is_allot, Integer allot_num, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, String section_award_7, String section_award_8, Long last_modify_time, Integer is_edit_state, String is_edit_reason, Integer allot_num_1, Integer allot_num_2, Integer allot_num_3, Integer allot_num_4, Integer allot_num_5, Integer allot_num_6, String film_district, String director_intro_en, String director_intro, String director_photo, String stills, Byte status, String film_side_demand, String copy_status, String film_total_time, String late_at_night, Byte is_plan, String special_demand, Byte has_special_demand, Byte is_show, Integer plan_number, String film_side_demand_playtime, Integer has_played_number, String id_copy_format, String other_demand, Integer copy_get_time, Integer copy_back_time, String audience_meeting, String is_samples_arrived, String has_sign_key, String film_cn_country, Date last_update_time, String film_type_en_name, String film_online_address, String film_online_password, Integer is_notice, Integer is_emphasis) { public Fc_film_6_8(Long id, String film_no, String origion_name, String en_name, String cn_name, Integer type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String en_director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Integer enroll_type, Integer is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Integer state, String color_tag, Integer round, Integer is_round_last, Integer is_allot, Integer allot_num, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, String section_award_7, String section_award_8, Long last_modify_time, Integer is_edit_state, String is_edit_reason, Integer allot_num_1, Integer allot_num_2, Integer allot_num_3, Integer allot_num_4, Integer allot_num_5, Integer allot_num_6, String film_district, String director_intro_en, String director_intro, String director_photo, String stills, Integer status, String film_side_demand, String copy_status, String film_total_time, String late_at_night, Integer is_plan, String special_demand, Integer has_special_demand, Integer is_show, Integer plan_number, String film_side_demand_playtime, Integer has_played_number, String id_copy_format, String other_demand, Integer copy_get_time, Integer copy_back_time, String audience_meeting, String is_samples_arrived, String has_sign_key, String film_cn_country, Date last_update_time, String film_type_en_name, String film_online_address, String film_online_password, Integer is_notice, Integer is_emphasis) {
this.id = id; this.id = id;
this.film_no = film_no; this.film_no = film_no;
this.origion_name = origion_name; this.origion_name = origion_name;
...@@ -714,11 +714,11 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -714,11 +714,11 @@ public class Fc_film_6_8 implements java.io.Serializable {
return cn_name; return cn_name;
} }
public void setType(Byte type) { public void setType(Integer type) {
this.type = type; this.type = type;
} }
public Byte getType() { public Integer getType() {
return type; return type;
} }
...@@ -866,19 +866,19 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -866,19 +866,19 @@ public class Fc_film_6_8 implements java.io.Serializable {
return enroll_type_name; return enroll_type_name;
} }
public void setEnroll_type(Byte enroll_type) { public void setEnroll_type(Integer enroll_type) {
this.enroll_type = enroll_type; this.enroll_type = enroll_type;
} }
public Byte getEnroll_type() { public Integer getEnroll_type() {
return enroll_type; return enroll_type;
} }
public void setIs_like_show(Byte is_like_show) { public void setIs_like_show(Integer is_like_show) {
this.is_like_show = is_like_show; this.is_like_show = is_like_show;
} }
public Byte getIs_like_show() { public Integer getIs_like_show() {
return is_like_show; return is_like_show;
} }
...@@ -930,11 +930,11 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -930,11 +930,11 @@ public class Fc_film_6_8 implements java.io.Serializable {
return create_ip; return create_ip;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
...@@ -946,27 +946,27 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -946,27 +946,27 @@ public class Fc_film_6_8 implements java.io.Serializable {
return color_tag; return color_tag;
} }
public void setRound(Byte round) { public void setRound(Integer round) {
this.round = round; this.round = round;
} }
public Byte getRound() { public Integer getRound() {
return round; return round;
} }
public void setIs_round_last(Byte is_round_last) { public void setIs_round_last(Integer is_round_last) {
this.is_round_last = is_round_last; this.is_round_last = is_round_last;
} }
public Byte getIs_round_last() { public Integer getIs_round_last() {
return is_round_last; return is_round_last;
} }
public void setIs_allot(Byte is_allot) { public void setIs_allot(Integer is_allot) {
this.is_allot = is_allot; this.is_allot = is_allot;
} }
public Byte getIs_allot() { public Integer getIs_allot() {
return is_allot; return is_allot;
} }
...@@ -1218,11 +1218,11 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -1218,11 +1218,11 @@ public class Fc_film_6_8 implements java.io.Serializable {
return stills; return stills;
} }
public void setStatus(Byte status) { public void setStatus(Integer status) {
this.status = status; this.status = status;
} }
public Byte getStatus() { public Integer getStatus() {
return status; return status;
} }
...@@ -1258,11 +1258,11 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -1258,11 +1258,11 @@ public class Fc_film_6_8 implements java.io.Serializable {
return late_at_night; return late_at_night;
} }
public void setIs_plan(Byte is_plan) { public void setIs_plan(Integer is_plan) {
this.is_plan = is_plan; this.is_plan = is_plan;
} }
public Byte getIs_plan() { public Integer getIs_plan() {
return is_plan; return is_plan;
} }
...@@ -1274,19 +1274,19 @@ public class Fc_film_6_8 implements java.io.Serializable { ...@@ -1274,19 +1274,19 @@ public class Fc_film_6_8 implements java.io.Serializable {
return special_demand; return special_demand;
} }
public void setHas_special_demand(Byte has_special_demand) { public void setHas_special_demand(Integer has_special_demand) {
this.has_special_demand = has_special_demand; this.has_special_demand = has_special_demand;
} }
public Byte getHas_special_demand() { public Integer getHas_special_demand() {
return has_special_demand; return has_special_demand;
} }
public void setIs_show(Byte is_show) { public void setIs_show(Integer is_show) {
this.is_show = is_show; this.is_show = is_show;
} }
public Byte getIs_show() { public Integer getIs_show() {
return is_show; return is_show;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_admin_review") @Entity(name="fc_film_admin_review")
......
...@@ -3,8 +3,8 @@ package com.egolm.film.bean; ...@@ -3,8 +3,8 @@ package com.egolm.film.bean;
import javax.persistence.Entity; import javax.persistence.Entity;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_allot") @Entity(name="fc_film_allot")
...@@ -39,17 +39,17 @@ public class Fc_film_allot implements java.io.Serializable { ...@@ -39,17 +39,17 @@ public class Fc_film_allot implements java.io.Serializable {
/** /**
* 是否复审 1是 0不是 * 是否复审 1是 0不是
*/ */
private Byte is_recheck; private Integer is_recheck;
/** /**
* 1最后复审 * 1最后复审
*/ */
private Byte review_last_recheck; private Integer review_last_recheck;
/** /**
* 1待评审 2已超时 3已开始 4已结束 * 1待评审 2已超时 3已开始 4已结束
*/ */
private Byte allot_state; private Integer allot_state;
/** /**
...@@ -71,7 +71,7 @@ public class Fc_film_allot implements java.io.Serializable { ...@@ -71,7 +71,7 @@ public class Fc_film_allot implements java.io.Serializable {
* @param review_last_recheck 1最后复审 * @param review_last_recheck 1最后复审
* @param allot_state 1待评审 2已超时 3已开始 4已结束 * @param allot_state 1待评审 2已超时 3已开始 4已结束
*/ */
public Fc_film_allot(Long film_id, Long uid, Integer review_round, Long push_time, Long adminid, Long update_time, Byte is_recheck, Byte review_last_recheck, Byte allot_state) { public Fc_film_allot(Long film_id, Long uid, Integer review_round, Long push_time, Long adminid, Long update_time, Integer is_recheck, Integer review_last_recheck, Integer allot_state) {
this.film_id = film_id; this.film_id = film_id;
this.uid = uid; this.uid = uid;
this.review_round = review_round; this.review_round = review_round;
...@@ -131,27 +131,27 @@ public class Fc_film_allot implements java.io.Serializable { ...@@ -131,27 +131,27 @@ public class Fc_film_allot implements java.io.Serializable {
return update_time; return update_time;
} }
public void setIs_recheck(Byte is_recheck) { public void setIs_recheck(Integer is_recheck) {
this.is_recheck = is_recheck; this.is_recheck = is_recheck;
} }
public Byte getIs_recheck() { public Integer getIs_recheck() {
return is_recheck; return is_recheck;
} }
public void setReview_last_recheck(Byte review_last_recheck) { public void setReview_last_recheck(Integer review_last_recheck) {
this.review_last_recheck = review_last_recheck; this.review_last_recheck = review_last_recheck;
} }
public Byte getReview_last_recheck() { public Integer getReview_last_recheck() {
return review_last_recheck; return review_last_recheck;
} }
public void setAllot_state(Byte allot_state) { public void setAllot_state(Integer allot_state) {
this.allot_state = allot_state; this.allot_state = allot_state;
} }
public Byte getAllot_state() { public Integer getAllot_state() {
return allot_state; return allot_state;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import java.util.Date; import java.util.Date;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_apply_review") @Entity(name="fc_film_apply_review")
...@@ -39,7 +39,7 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -39,7 +39,7 @@ public class Fc_film_apply_review implements java.io.Serializable {
/** /**
* 类型 1 电影 2电视 * 类型 1 电影 2电视
*/ */
private Byte type; private Integer type;
/** /**
* 影片内容分组id * 影片内容分组id
...@@ -134,12 +134,12 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -134,12 +134,12 @@ public class Fc_film_apply_review implements java.io.Serializable {
/** /**
* 报名类型 * 报名类型
*/ */
private Byte enroll_type; private Integer enroll_type;
/** /**
* 是否愿意参展 * 是否愿意参展
*/ */
private Byte is_like_show; private Integer is_like_show;
/** /**
* 首映地 * 首映地
...@@ -174,7 +174,7 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -174,7 +174,7 @@ public class Fc_film_apply_review implements java.io.Serializable {
/** /**
* 状态 * 状态
*/ */
private Byte state; private Integer state;
/** /**
* 颜色标签 * 颜色标签
...@@ -184,17 +184,17 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -184,17 +184,17 @@ public class Fc_film_apply_review implements java.io.Serializable {
/** /**
* 当前审核环节 * 当前审核环节
*/ */
private Byte round; private Integer round;
/** /**
* 本环节最后 0不是 1是 * 本环节最后 0不是 1是
*/ */
private Byte is_round_last; private Integer is_round_last;
/** /**
* 是否分配 1已分配 2未分配 * 是否分配 1已分配 2未分配
*/ */
private Byte is_allot; private Integer is_allot;
/** /**
* 已分配人数 * 已分配人数
...@@ -348,7 +348,7 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -348,7 +348,7 @@ public class Fc_film_apply_review implements java.io.Serializable {
/** /**
* 状态 0正常 1关闭 2删除 * 状态 0正常 1关闭 2删除
*/ */
private Byte status; private Integer status;
/** /**
* 片方要求 * 片方要求
...@@ -373,7 +373,7 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -373,7 +373,7 @@ public class Fc_film_apply_review implements java.io.Serializable {
/** /**
* 是否排片 1未排 2已排 * 是否排片 1未排 2已排
*/ */
private Byte is_plan; private Integer is_plan;
/** /**
* 特殊要求 * 特殊要求
...@@ -383,12 +383,12 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -383,12 +383,12 @@ public class Fc_film_apply_review implements java.io.Serializable {
/** /**
* 是否存在特殊要求 0没有 1有 * 是否存在特殊要求 0没有 1有
*/ */
private Byte has_special_demand; private Integer has_special_demand;
/** /**
* 是否显示 1显示 2不显示 * 是否显示 1显示 2不显示
*/ */
private Byte is_show; private Integer is_show;
/** /**
* 已排片数量 * 已排片数量
...@@ -610,7 +610,7 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -610,7 +610,7 @@ public class Fc_film_apply_review implements java.io.Serializable {
* @param film_apply_mobile 影片申请人手机 * @param film_apply_mobile 影片申请人手机
* @param film_apply_country 影片申请国籍 * @param film_apply_country 影片申请国籍
*/ */
public Fc_film_apply_review(Long id, String film_no, String origion_name, String en_name, String cn_name, Byte type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String en_director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Byte enroll_type, Byte is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Byte state, String color_tag, Byte round, Byte is_round_last, Byte is_allot, Integer allot_num, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, String section_award_7, String section_award_8, Long last_modify_time, Integer is_edit_state, String is_edit_reason, Integer allot_num_1, Integer allot_num_2, Integer allot_num_3, Integer allot_num_4, Integer allot_num_5, Integer allot_num_6, String film_district, String director_intro_en, String director_intro, String director_photo, String stills, Byte status, String film_side_demand, String copy_status, String film_total_time, String late_at_night, Byte is_plan, String special_demand, Byte has_special_demand, Byte is_show, Integer plan_number, String film_side_demand_playtime, Integer has_played_number, String id_copy_format, String other_demand, Integer copy_get_time, Integer copy_back_time, String audience_meeting, String is_samples_arrived, String has_sign_key, String film_cn_country, Date last_update_time, String film_type_en_name, String film_online_address, String film_online_password, Integer is_notice, Integer is_emphasis, String film_apply_company, String film_apply_realname, String film_apply_tel, String film_apply_email, String film_apply_mobile, String film_apply_country) { public Fc_film_apply_review(Long id, String film_no, String origion_name, String en_name, String cn_name, Integer type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String en_director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Integer enroll_type, Integer is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Integer state, String color_tag, Integer round, Integer is_round_last, Integer is_allot, Integer allot_num, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, String section_award_7, String section_award_8, Long last_modify_time, Integer is_edit_state, String is_edit_reason, Integer allot_num_1, Integer allot_num_2, Integer allot_num_3, Integer allot_num_4, Integer allot_num_5, Integer allot_num_6, String film_district, String director_intro_en, String director_intro, String director_photo, String stills, Integer status, String film_side_demand, String copy_status, String film_total_time, String late_at_night, Integer is_plan, String special_demand, Integer has_special_demand, Integer is_show, Integer plan_number, String film_side_demand_playtime, Integer has_played_number, String id_copy_format, String other_demand, Integer copy_get_time, Integer copy_back_time, String audience_meeting, String is_samples_arrived, String has_sign_key, String film_cn_country, Date last_update_time, String film_type_en_name, String film_online_address, String film_online_password, Integer is_notice, Integer is_emphasis, String film_apply_company, String film_apply_realname, String film_apply_tel, String film_apply_email, String film_apply_mobile, String film_apply_country) {
this.id = id; this.id = id;
this.film_no = film_no; this.film_no = film_no;
this.origion_name = origion_name; this.origion_name = origion_name;
...@@ -753,11 +753,11 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -753,11 +753,11 @@ public class Fc_film_apply_review implements java.io.Serializable {
return cn_name; return cn_name;
} }
public void setType(Byte type) { public void setType(Integer type) {
this.type = type; this.type = type;
} }
public Byte getType() { public Integer getType() {
return type; return type;
} }
...@@ -905,19 +905,19 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -905,19 +905,19 @@ public class Fc_film_apply_review implements java.io.Serializable {
return enroll_type_name; return enroll_type_name;
} }
public void setEnroll_type(Byte enroll_type) { public void setEnroll_type(Integer enroll_type) {
this.enroll_type = enroll_type; this.enroll_type = enroll_type;
} }
public Byte getEnroll_type() { public Integer getEnroll_type() {
return enroll_type; return enroll_type;
} }
public void setIs_like_show(Byte is_like_show) { public void setIs_like_show(Integer is_like_show) {
this.is_like_show = is_like_show; this.is_like_show = is_like_show;
} }
public Byte getIs_like_show() { public Integer getIs_like_show() {
return is_like_show; return is_like_show;
} }
...@@ -969,11 +969,11 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -969,11 +969,11 @@ public class Fc_film_apply_review implements java.io.Serializable {
return create_ip; return create_ip;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
...@@ -985,27 +985,27 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -985,27 +985,27 @@ public class Fc_film_apply_review implements java.io.Serializable {
return color_tag; return color_tag;
} }
public void setRound(Byte round) { public void setRound(Integer round) {
this.round = round; this.round = round;
} }
public Byte getRound() { public Integer getRound() {
return round; return round;
} }
public void setIs_round_last(Byte is_round_last) { public void setIs_round_last(Integer is_round_last) {
this.is_round_last = is_round_last; this.is_round_last = is_round_last;
} }
public Byte getIs_round_last() { public Integer getIs_round_last() {
return is_round_last; return is_round_last;
} }
public void setIs_allot(Byte is_allot) { public void setIs_allot(Integer is_allot) {
this.is_allot = is_allot; this.is_allot = is_allot;
} }
public Byte getIs_allot() { public Integer getIs_allot() {
return is_allot; return is_allot;
} }
...@@ -1257,11 +1257,11 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -1257,11 +1257,11 @@ public class Fc_film_apply_review implements java.io.Serializable {
return stills; return stills;
} }
public void setStatus(Byte status) { public void setStatus(Integer status) {
this.status = status; this.status = status;
} }
public Byte getStatus() { public Integer getStatus() {
return status; return status;
} }
...@@ -1297,11 +1297,11 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -1297,11 +1297,11 @@ public class Fc_film_apply_review implements java.io.Serializable {
return late_at_night; return late_at_night;
} }
public void setIs_plan(Byte is_plan) { public void setIs_plan(Integer is_plan) {
this.is_plan = is_plan; this.is_plan = is_plan;
} }
public Byte getIs_plan() { public Integer getIs_plan() {
return is_plan; return is_plan;
} }
...@@ -1313,19 +1313,19 @@ public class Fc_film_apply_review implements java.io.Serializable { ...@@ -1313,19 +1313,19 @@ public class Fc_film_apply_review implements java.io.Serializable {
return special_demand; return special_demand;
} }
public void setHas_special_demand(Byte has_special_demand) { public void setHas_special_demand(Integer has_special_demand) {
this.has_special_demand = has_special_demand; this.has_special_demand = has_special_demand;
} }
public Byte getHas_special_demand() { public Integer getHas_special_demand() {
return has_special_demand; return has_special_demand;
} }
public void setIs_show(Byte is_show) { public void setIs_show(Integer is_show) {
this.is_show = is_show; this.is_show = is_show;
} }
public Byte getIs_show() { public Integer getIs_show() {
return is_show; return is_show;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_archive") @Entity(name="fc_film_archive")
......
...@@ -3,8 +3,8 @@ package com.egolm.film.bean; ...@@ -3,8 +3,8 @@ package com.egolm.film.bean;
import javax.persistence.Entity; import javax.persistence.Entity;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_argue") @Entity(name="fc_film_argue")
...@@ -20,12 +20,12 @@ public class Fc_film_argue implements java.io.Serializable { ...@@ -20,12 +20,12 @@ public class Fc_film_argue implements java.io.Serializable {
/** /**
* 争议环节 * 争议环节
*/ */
private Byte round; private Integer round;
/** /**
* 争议状态 1争议中 2已解决 * 争议状态 1争议中 2已解决
*/ */
private Byte argue_state; private Integer argue_state;
/** /**
* 创建时间 * 创建时间
...@@ -35,12 +35,12 @@ public class Fc_film_argue implements java.io.Serializable { ...@@ -35,12 +35,12 @@ public class Fc_film_argue implements java.io.Serializable {
/** /**
* 次数 * 次数
*/ */
private Byte times; private Integer times;
/** /**
* 0 未分配 1已分配 * 0 未分配 1已分配
*/ */
private Byte is_argue_allot; private Integer is_argue_allot;
/** /**
...@@ -59,7 +59,7 @@ public class Fc_film_argue implements java.io.Serializable { ...@@ -59,7 +59,7 @@ public class Fc_film_argue implements java.io.Serializable {
* @param times 次数 * @param times 次数
* @param is_argue_allot 0 未分配 1已分配 * @param is_argue_allot 0 未分配 1已分配
*/ */
public Fc_film_argue(Long film_id, Byte round, Byte argue_state, Long create_time, Byte times, Byte is_argue_allot) { public Fc_film_argue(Long film_id, Integer round, Integer argue_state, Long create_time, Integer times, Integer is_argue_allot) {
this.film_id = film_id; this.film_id = film_id;
this.round = round; this.round = round;
this.argue_state = argue_state; this.argue_state = argue_state;
...@@ -76,19 +76,19 @@ public class Fc_film_argue implements java.io.Serializable { ...@@ -76,19 +76,19 @@ public class Fc_film_argue implements java.io.Serializable {
return film_id; return film_id;
} }
public void setRound(Byte round) { public void setRound(Integer round) {
this.round = round; this.round = round;
} }
public Byte getRound() { public Integer getRound() {
return round; return round;
} }
public void setArgue_state(Byte argue_state) { public void setArgue_state(Integer argue_state) {
this.argue_state = argue_state; this.argue_state = argue_state;
} }
public Byte getArgue_state() { public Integer getArgue_state() {
return argue_state; return argue_state;
} }
...@@ -100,19 +100,19 @@ public class Fc_film_argue implements java.io.Serializable { ...@@ -100,19 +100,19 @@ public class Fc_film_argue implements java.io.Serializable {
return create_time; return create_time;
} }
public void setTimes(Byte times) { public void setTimes(Integer times) {
this.times = times; this.times = times;
} }
public Byte getTimes() { public Integer getTimes() {
return times; return times;
} }
public void setIs_argue_allot(Byte is_argue_allot) { public void setIs_argue_allot(Integer is_argue_allot) {
this.is_argue_allot = is_argue_allot; this.is_argue_allot = is_argue_allot;
} }
public Byte getIs_argue_allot() { public Integer getIs_argue_allot() {
return is_argue_allot; return is_argue_allot;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_doubtful_point") @Entity(name="fc_film_doubtful_point")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_file") @Entity(name="fc_film_file")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_group") @Entity(name="fc_film_group")
......
...@@ -7,8 +7,8 @@ import javax.persistence.Id; ...@@ -7,8 +7,8 @@ import javax.persistence.Id;
import java.util.Date; import java.util.Date;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_history") @Entity(name="fc_film_history")
...@@ -47,7 +47,7 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -47,7 +47,7 @@ public class Fc_film_history implements java.io.Serializable {
/** /**
* 类型 1 电影 2电视 * 类型 1 电影 2电视
*/ */
private Byte type; private Integer type;
/** /**
* 影片内容分组id * 影片内容分组id
...@@ -142,12 +142,12 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -142,12 +142,12 @@ public class Fc_film_history implements java.io.Serializable {
/** /**
* 报名类型 * 报名类型
*/ */
private Byte enroll_type; private Integer enroll_type;
/** /**
* 是否愿意参展 * 是否愿意参展
*/ */
private Byte is_like_show; private Integer is_like_show;
/** /**
* 首映地 * 首映地
...@@ -182,7 +182,7 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -182,7 +182,7 @@ public class Fc_film_history implements java.io.Serializable {
/** /**
* 状态 * 状态
*/ */
private Byte state; private Integer state;
/** /**
* 颜色标签 * 颜色标签
...@@ -192,17 +192,17 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -192,17 +192,17 @@ public class Fc_film_history implements java.io.Serializable {
/** /**
* 当前审核环节 * 当前审核环节
*/ */
private Byte round; private Integer round;
/** /**
* 本环节最后 0不是 1是 * 本环节最后 0不是 1是
*/ */
private Byte is_round_last; private Integer is_round_last;
/** /**
* 是否分配 1已分配 2未分配 * 是否分配 1已分配 2未分配
*/ */
private Byte is_allot; private Integer is_allot;
/** /**
* 已分配人数 * 已分配人数
...@@ -356,7 +356,7 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -356,7 +356,7 @@ public class Fc_film_history implements java.io.Serializable {
/** /**
* 状态 0正常 1关闭 2删除 * 状态 0正常 1关闭 2删除
*/ */
private Byte status; private Integer status;
/** /**
* 片方要求 * 片方要求
...@@ -381,7 +381,7 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -381,7 +381,7 @@ public class Fc_film_history implements java.io.Serializable {
/** /**
* 是否排片 1未排 2已排 * 是否排片 1未排 2已排
*/ */
private Byte is_plan; private Integer is_plan;
/** /**
* 特殊要求 * 特殊要求
...@@ -391,12 +391,12 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -391,12 +391,12 @@ public class Fc_film_history implements java.io.Serializable {
/** /**
* 是否存在特殊要求 0没有 1有 * 是否存在特殊要求 0没有 1有
*/ */
private Byte has_special_demand; private Integer has_special_demand;
/** /**
* 是否显示 1显示 2不显示 * 是否显示 1显示 2不显示
*/ */
private Byte is_show; private Integer is_show;
/** /**
* 已排片数量 * 已排片数量
...@@ -571,7 +571,7 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -571,7 +571,7 @@ public class Fc_film_history implements java.io.Serializable {
* @param film_type_en_name 导入时影片类型名称(英文) * @param film_type_en_name 导入时影片类型名称(英文)
* @param result 评审结果 * @param result 评审结果
*/ */
public Fc_film_history(Long id, Integer cyear, String film_no, String origion_name, String en_name, String cn_name, Byte type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String en_director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Byte enroll_type, Byte is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Byte state, String color_tag, Byte round, Byte is_round_last, Byte is_allot, Integer allot_num, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, String section_award_7, String section_award_8, Long last_modify_time, Integer is_edit_state, String is_edit_reason, Integer allot_num_1, Integer allot_num_2, Integer allot_num_3, Integer allot_num_4, Integer allot_num_5, Integer allot_num_6, String film_district, String director_intro_en, String director_intro, String director_photo, String stills, Byte status, String film_side_demand, String copy_status, String film_total_time, String late_at_night, Byte is_plan, String special_demand, Byte has_special_demand, Byte is_show, Integer plan_number, String film_side_demand_playtime, Integer has_played_number, String id_copy_format, String other_demand, Integer copy_get_time, Integer copy_back_time, String audience_meeting, String is_samples_arrived, String has_sign_key, String film_cn_country, Date last_update_time, String film_type_en_name, String result) { public Fc_film_history(Long id, Integer cyear, String film_no, String origion_name, String en_name, String cn_name, Integer type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String en_director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Integer enroll_type, Integer is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Integer state, String color_tag, Integer round, Integer is_round_last, Integer is_allot, Integer allot_num, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, String section_award_7, String section_award_8, Long last_modify_time, Integer is_edit_state, String is_edit_reason, Integer allot_num_1, Integer allot_num_2, Integer allot_num_3, Integer allot_num_4, Integer allot_num_5, Integer allot_num_6, String film_district, String director_intro_en, String director_intro, String director_photo, String stills, Integer status, String film_side_demand, String copy_status, String film_total_time, String late_at_night, Integer is_plan, String special_demand, Integer has_special_demand, Integer is_show, Integer plan_number, String film_side_demand_playtime, Integer has_played_number, String id_copy_format, String other_demand, Integer copy_get_time, Integer copy_back_time, String audience_meeting, String is_samples_arrived, String has_sign_key, String film_cn_country, Date last_update_time, String film_type_en_name, String result) {
this.id = id; this.id = id;
this.cyear = cyear; this.cyear = cyear;
this.film_no = film_no; this.film_no = film_no;
...@@ -714,11 +714,11 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -714,11 +714,11 @@ public class Fc_film_history implements java.io.Serializable {
return cn_name; return cn_name;
} }
public void setType(Byte type) { public void setType(Integer type) {
this.type = type; this.type = type;
} }
public Byte getType() { public Integer getType() {
return type; return type;
} }
...@@ -866,19 +866,19 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -866,19 +866,19 @@ public class Fc_film_history implements java.io.Serializable {
return enroll_type_name; return enroll_type_name;
} }
public void setEnroll_type(Byte enroll_type) { public void setEnroll_type(Integer enroll_type) {
this.enroll_type = enroll_type; this.enroll_type = enroll_type;
} }
public Byte getEnroll_type() { public Integer getEnroll_type() {
return enroll_type; return enroll_type;
} }
public void setIs_like_show(Byte is_like_show) { public void setIs_like_show(Integer is_like_show) {
this.is_like_show = is_like_show; this.is_like_show = is_like_show;
} }
public Byte getIs_like_show() { public Integer getIs_like_show() {
return is_like_show; return is_like_show;
} }
...@@ -930,11 +930,11 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -930,11 +930,11 @@ public class Fc_film_history implements java.io.Serializable {
return create_ip; return create_ip;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
...@@ -946,27 +946,27 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -946,27 +946,27 @@ public class Fc_film_history implements java.io.Serializable {
return color_tag; return color_tag;
} }
public void setRound(Byte round) { public void setRound(Integer round) {
this.round = round; this.round = round;
} }
public Byte getRound() { public Integer getRound() {
return round; return round;
} }
public void setIs_round_last(Byte is_round_last) { public void setIs_round_last(Integer is_round_last) {
this.is_round_last = is_round_last; this.is_round_last = is_round_last;
} }
public Byte getIs_round_last() { public Integer getIs_round_last() {
return is_round_last; return is_round_last;
} }
public void setIs_allot(Byte is_allot) { public void setIs_allot(Integer is_allot) {
this.is_allot = is_allot; this.is_allot = is_allot;
} }
public Byte getIs_allot() { public Integer getIs_allot() {
return is_allot; return is_allot;
} }
...@@ -1218,11 +1218,11 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -1218,11 +1218,11 @@ public class Fc_film_history implements java.io.Serializable {
return stills; return stills;
} }
public void setStatus(Byte status) { public void setStatus(Integer status) {
this.status = status; this.status = status;
} }
public Byte getStatus() { public Integer getStatus() {
return status; return status;
} }
...@@ -1258,11 +1258,11 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -1258,11 +1258,11 @@ public class Fc_film_history implements java.io.Serializable {
return late_at_night; return late_at_night;
} }
public void setIs_plan(Byte is_plan) { public void setIs_plan(Integer is_plan) {
this.is_plan = is_plan; this.is_plan = is_plan;
} }
public Byte getIs_plan() { public Integer getIs_plan() {
return is_plan; return is_plan;
} }
...@@ -1274,19 +1274,19 @@ public class Fc_film_history implements java.io.Serializable { ...@@ -1274,19 +1274,19 @@ public class Fc_film_history implements java.io.Serializable {
return special_demand; return special_demand;
} }
public void setHas_special_demand(Byte has_special_demand) { public void setHas_special_demand(Integer has_special_demand) {
this.has_special_demand = has_special_demand; this.has_special_demand = has_special_demand;
} }
public Byte getHas_special_demand() { public Integer getHas_special_demand() {
return has_special_demand; return has_special_demand;
} }
public void setIs_show(Byte is_show) { public void setIs_show(Integer is_show) {
this.is_show = is_show; this.is_show = is_show;
} }
public Byte getIs_show() { public Integer getIs_show() {
return is_show; return is_show;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_import_error") @Entity(name="fc_film_import_error")
...@@ -32,7 +32,7 @@ public class Fc_film_import_error implements java.io.Serializable { ...@@ -32,7 +32,7 @@ public class Fc_film_import_error implements java.io.Serializable {
/** /**
* 1系统出错 2管理员跳过 * 1系统出错 2管理员跳过
*/ */
private Byte type; private Integer type;
private Long adminid; private Long adminid;
...@@ -59,7 +59,7 @@ public class Fc_film_import_error implements java.io.Serializable { ...@@ -59,7 +59,7 @@ public class Fc_film_import_error implements java.io.Serializable {
* @param adminid * @param adminid
* @param adminip 管理员ip * @param adminip 管理员ip
*/ */
public Fc_film_import_error(Long id, String film_no, Long create_time, Long upload_file_id, Byte type, Long adminid, String adminip) { public Fc_film_import_error(Long id, String film_no, Long create_time, Long upload_file_id, Integer type, Long adminid, String adminip) {
this.id = id; this.id = id;
this.film_no = film_no; this.film_no = film_no;
this.create_time = create_time; this.create_time = create_time;
...@@ -101,11 +101,11 @@ public class Fc_film_import_error implements java.io.Serializable { ...@@ -101,11 +101,11 @@ public class Fc_film_import_error implements java.io.Serializable {
return upload_file_id; return upload_file_id;
} }
public void setType(Byte type) { public void setType(Integer type) {
this.type = type; this.type = type;
} }
public Byte getType() { public Integer getType() {
return type; return type;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_import_time") @Entity(name="fc_film_import_time")
......
...@@ -3,12 +3,11 @@ package com.egolm.film.bean; ...@@ -3,12 +3,11 @@ package com.egolm.film.bean;
import java.math.BigDecimal; import java.math.BigDecimal;
import javax.persistence.Entity; import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_review") @Entity(name="fc_film_review")
...@@ -44,7 +43,7 @@ public class Fc_film_review implements java.io.Serializable { ...@@ -44,7 +43,7 @@ public class Fc_film_review implements java.io.Serializable {
/** /**
* 状态 1通过 2否决 3参赛金爵 4参展 5参加亚新 * 状态 1通过 2否决 3参赛金爵 4参展 5参加亚新
*/ */
private Byte state; private Integer state;
/** /**
* 否决理由 * 否决理由
...@@ -109,7 +108,7 @@ public class Fc_film_review implements java.io.Serializable { ...@@ -109,7 +108,7 @@ public class Fc_film_review implements java.io.Serializable {
/** /**
* 是否管理员操作 * 是否管理员操作
*/ */
private Byte is_admin_operate; private Integer is_admin_operate;
/** /**
* 管理员id * 管理员id
...@@ -129,7 +128,7 @@ public class Fc_film_review implements java.io.Serializable { ...@@ -129,7 +128,7 @@ public class Fc_film_review implements java.io.Serializable {
/** /**
* 暂存状态 * 暂存状态
*/ */
private Byte save_state; private Integer save_state;
/** /**
...@@ -166,7 +165,7 @@ public class Fc_film_review implements java.io.Serializable { ...@@ -166,7 +165,7 @@ public class Fc_film_review implements java.io.Serializable {
* @param is_save 是否暂存 1=》是 0=》不是 * @param is_save 是否暂存 1=》是 0=》不是
* @param save_state 暂存状态 * @param save_state 暂存状态
*/ */
public Fc_film_review(Long id, Long film_id, Integer round, Long uid, Long review_time, String review_ip, Byte state, String veto, String video_intro, String video_features, String select_result, BigDecimal award_1_score, BigDecimal award_2_score, BigDecimal award_3_score, BigDecimal award_4_score, BigDecimal award_5_score, BigDecimal award_6_score, BigDecimal award_7_score, BigDecimal award_8_score, Byte is_admin_operate, Long admin_id, Integer admin_logs_id, Integer is_save, Byte save_state) { public Fc_film_review(Long id, Long film_id, Integer round, Long uid, Long review_time, String review_ip, Integer state, String veto, String video_intro, String video_features, String select_result, BigDecimal award_1_score, BigDecimal award_2_score, BigDecimal award_3_score, BigDecimal award_4_score, BigDecimal award_5_score, BigDecimal award_6_score, BigDecimal award_7_score, BigDecimal award_8_score, Integer is_admin_operate, Long admin_id, Integer admin_logs_id, Integer is_save, Integer save_state) {
this.id = id; this.id = id;
this.film_id = film_id; this.film_id = film_id;
this.round = round; this.round = round;
...@@ -241,11 +240,11 @@ public class Fc_film_review implements java.io.Serializable { ...@@ -241,11 +240,11 @@ public class Fc_film_review implements java.io.Serializable {
return review_ip; return review_ip;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
...@@ -345,11 +344,11 @@ public class Fc_film_review implements java.io.Serializable { ...@@ -345,11 +344,11 @@ public class Fc_film_review implements java.io.Serializable {
return award_8_score; return award_8_score;
} }
public void setIs_admin_operate(Byte is_admin_operate) { public void setIs_admin_operate(Integer is_admin_operate) {
this.is_admin_operate = is_admin_operate; this.is_admin_operate = is_admin_operate;
} }
public Byte getIs_admin_operate() { public Integer getIs_admin_operate() {
return is_admin_operate; return is_admin_operate;
} }
...@@ -377,11 +376,11 @@ public class Fc_film_review implements java.io.Serializable { ...@@ -377,11 +376,11 @@ public class Fc_film_review implements java.io.Serializable {
return is_save; return is_save;
} }
public void setSave_state(Byte save_state) { public void setSave_state(Integer save_state) {
this.save_state = save_state; this.save_state = save_state;
} }
public Byte getSave_state() { public Integer getSave_state() {
return save_state; return save_state;
} }
......
...@@ -3,8 +3,8 @@ package com.egolm.film.bean; ...@@ -3,8 +3,8 @@ package com.egolm.film.bean;
import javax.persistence.Entity; import javax.persistence.Entity;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_review_group") @Entity(name="fc_film_review_group")
...@@ -14,7 +14,7 @@ public class Fc_film_review_group implements java.io.Serializable { ...@@ -14,7 +14,7 @@ public class Fc_film_review_group implements java.io.Serializable {
private Long film_id; private Long film_id;
private Byte round; private Integer round;
private Long review_group_id; private Long review_group_id;
...@@ -47,7 +47,7 @@ public class Fc_film_review_group implements java.io.Serializable { ...@@ -47,7 +47,7 @@ public class Fc_film_review_group implements java.io.Serializable {
* @param create_ip 创建ip * @param create_ip 创建ip
* @param update_time 修改时间 * @param update_time 修改时间
*/ */
public Fc_film_review_group(Long film_id, Byte round, Long review_group_id, Long create_time, String create_ip, Long update_time) { public Fc_film_review_group(Long film_id, Integer round, Long review_group_id, Long create_time, String create_ip, Long update_time) {
this.film_id = film_id; this.film_id = film_id;
this.round = round; this.round = round;
this.review_group_id = review_group_id; this.review_group_id = review_group_id;
...@@ -64,11 +64,11 @@ public class Fc_film_review_group implements java.io.Serializable { ...@@ -64,11 +64,11 @@ public class Fc_film_review_group implements java.io.Serializable {
return film_id; return film_id;
} }
public void setRound(Byte round) { public void setRound(Integer round) {
this.round = round; this.round = round;
} }
public Byte getRound() { public Integer getRound() {
return round; return round;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_timeout_manage") @Entity(name="fc_film_timeout_manage")
...@@ -28,7 +28,7 @@ public class Fc_film_timeout_manage implements java.io.Serializable { ...@@ -28,7 +28,7 @@ public class Fc_film_timeout_manage implements java.io.Serializable {
/** /**
* 评审环节 * 评审环节
*/ */
private Byte round; private Integer round;
/** /**
* 用户uid * 用户uid
...@@ -43,7 +43,7 @@ public class Fc_film_timeout_manage implements java.io.Serializable { ...@@ -43,7 +43,7 @@ public class Fc_film_timeout_manage implements java.io.Serializable {
/** /**
* 1未分配 2已分配 * 1未分配 2已分配
*/ */
private Byte is_allot; private Integer is_allot;
/** /**
...@@ -62,7 +62,7 @@ public class Fc_film_timeout_manage implements java.io.Serializable { ...@@ -62,7 +62,7 @@ public class Fc_film_timeout_manage implements java.io.Serializable {
* @param logtime 记录时间 * @param logtime 记录时间
* @param is_allot 1未分配 2已分配 * @param is_allot 1未分配 2已分配
*/ */
public Fc_film_timeout_manage(Long id, Long film_id, Byte round, Long uid, Long logtime, Byte is_allot) { public Fc_film_timeout_manage(Long id, Long film_id, Integer round, Long uid, Long logtime, Integer is_allot) {
this.id = id; this.id = id;
this.film_id = film_id; this.film_id = film_id;
this.round = round; this.round = round;
...@@ -87,11 +87,11 @@ public class Fc_film_timeout_manage implements java.io.Serializable { ...@@ -87,11 +87,11 @@ public class Fc_film_timeout_manage implements java.io.Serializable {
return film_id; return film_id;
} }
public void setRound(Byte round) { public void setRound(Integer round) {
this.round = round; this.round = round;
} }
public Byte getRound() { public Integer getRound() {
return round; return round;
} }
...@@ -111,11 +111,11 @@ public class Fc_film_timeout_manage implements java.io.Serializable { ...@@ -111,11 +111,11 @@ public class Fc_film_timeout_manage implements java.io.Serializable {
return logtime; return logtime;
} }
public void setIs_allot(Byte is_allot) { public void setIs_allot(Integer is_allot) {
this.is_allot = is_allot; this.is_allot = is_allot;
} }
public Byte getIs_allot() { public Integer getIs_allot() {
return is_allot; return is_allot;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_timeout_setting") @Entity(name="fc_film_timeout_setting")
...@@ -23,7 +23,7 @@ public class Fc_film_timeout_setting implements java.io.Serializable { ...@@ -23,7 +23,7 @@ public class Fc_film_timeout_setting implements java.io.Serializable {
/** /**
* 环节 * 环节
*/ */
private Byte round; private Integer round;
/** /**
* 超时时间 * 超时时间
...@@ -40,7 +40,7 @@ public class Fc_film_timeout_setting implements java.io.Serializable { ...@@ -40,7 +40,7 @@ public class Fc_film_timeout_setting implements java.io.Serializable {
/** /**
* 1正常 1停用 * 1正常 1停用
*/ */
private Byte state; private Integer state;
/** /**
...@@ -59,7 +59,7 @@ public class Fc_film_timeout_setting implements java.io.Serializable { ...@@ -59,7 +59,7 @@ public class Fc_film_timeout_setting implements java.io.Serializable {
* @param adminid * @param adminid
* @param state 1正常 1停用 * @param state 1正常 1停用
*/ */
public Fc_film_timeout_setting(Integer id, Byte round, Integer time, String desc, Long adminid, Byte state) { public Fc_film_timeout_setting(Integer id, Integer round, Integer time, String desc, Long adminid, Integer state) {
this.id = id; this.id = id;
this.round = round; this.round = round;
this.time = time; this.time = time;
...@@ -76,11 +76,11 @@ public class Fc_film_timeout_setting implements java.io.Serializable { ...@@ -76,11 +76,11 @@ public class Fc_film_timeout_setting implements java.io.Serializable {
return id; return id;
} }
public void setRound(Byte round) { public void setRound(Integer round) {
this.round = round; this.round = round;
} }
public Byte getRound() { public Integer getRound() {
return round; return round;
} }
...@@ -108,11 +108,11 @@ public class Fc_film_timeout_setting implements java.io.Serializable { ...@@ -108,11 +108,11 @@ public class Fc_film_timeout_setting implements java.io.Serializable {
return adminid; return adminid;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_tmp") @Entity(name="fc_film_tmp")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_total") @Entity(name="fc_film_total")
......
...@@ -3,8 +3,8 @@ package com.egolm.film.bean; ...@@ -3,8 +3,8 @@ package com.egolm.film.bean;
import javax.persistence.Entity; import javax.persistence.Entity;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_film_user_play") @Entity(name="fc_film_user_play")
...@@ -17,7 +17,7 @@ public class Fc_film_user_play implements java.io.Serializable { ...@@ -17,7 +17,7 @@ public class Fc_film_user_play implements java.io.Serializable {
*/ */
private Long film_id; private Long film_id;
private Byte round; private Integer round;
private Long uid; private Long uid;
...@@ -53,7 +53,7 @@ public class Fc_film_user_play implements java.io.Serializable { ...@@ -53,7 +53,7 @@ public class Fc_film_user_play implements java.io.Serializable {
* @param playtime 播放时间 * @param playtime 播放时间
* @param watchtime 观看时间 * @param watchtime 观看时间
*/ */
public Fc_film_user_play(Long film_id, Byte round, Long uid, Long addtime, String playtime, Long watchtime) { public Fc_film_user_play(Long film_id, Integer round, Long uid, Long addtime, String playtime, Long watchtime) {
this.film_id = film_id; this.film_id = film_id;
this.round = round; this.round = round;
this.uid = uid; this.uid = uid;
...@@ -70,11 +70,11 @@ public class Fc_film_user_play implements java.io.Serializable { ...@@ -70,11 +70,11 @@ public class Fc_film_user_play implements java.io.Serializable {
return film_id; return film_id;
} }
public void setRound(Byte round) { public void setRound(Integer round) {
this.round = round; this.round = round;
} }
public Byte getRound() { public Integer getRound() {
return round; return round;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_member") @Entity(name="fc_member")
...@@ -75,7 +75,7 @@ public class Fc_member implements java.io.Serializable { ...@@ -75,7 +75,7 @@ public class Fc_member implements java.io.Serializable {
/** /**
* 见状态码 * 见状态码
*/ */
private Byte state; private Integer state;
/** /**
* 用户名 * 用户名
...@@ -119,7 +119,7 @@ public class Fc_member implements java.io.Serializable { ...@@ -119,7 +119,7 @@ public class Fc_member implements java.io.Serializable {
* @param token 用户登陆 session_id * @param token 用户登陆 session_id
* @param lang 语言来源 * @param lang 语言来源
*/ */
public Fc_member(Integer id, String email, String password, String salt, Long login_time, String login_ip, String realname, String address, String company, String tel, Long create_time, String create_ip, Byte state, String username, String token, String lang) { public Fc_member(Integer id, String email, String password, String salt, Long login_time, String login_ip, String realname, String address, String company, String tel, Long create_time, String create_ip, Integer state, String username, String token, String lang) {
this.id = id; this.id = id;
this.email = email; this.email = email;
this.password = password; this.password = password;
...@@ -234,11 +234,11 @@ public class Fc_member implements java.io.Serializable { ...@@ -234,11 +234,11 @@ public class Fc_member implements java.io.Serializable {
return create_ip; return create_ip;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_member_email") @Entity(name="fc_member_email")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_member_film") @Entity(name="fc_member_film")
...@@ -40,7 +40,7 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -40,7 +40,7 @@ public class Fc_member_film implements java.io.Serializable {
/** /**
* 类型 1 电影 2电视 * 类型 1 电影 2电视
*/ */
private Byte type; private Integer type;
/** /**
* 影片内容分组id * 影片内容分组id
...@@ -110,12 +110,12 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -110,12 +110,12 @@ public class Fc_member_film implements java.io.Serializable {
/** /**
* 报名类型 * 报名类型
*/ */
private Byte enroll_type; private Integer enroll_type;
/** /**
* 是否愿意参展 * 是否愿意参展
*/ */
private Byte is_like_show; private Integer is_like_show;
/** /**
* 添加时间 * 添加时间
...@@ -135,7 +135,7 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -135,7 +135,7 @@ public class Fc_member_film implements java.io.Serializable {
/** /**
* 状态 * 状态
*/ */
private Byte state; private Integer state;
/** /**
* 该片已参加过的电影节及所获奖项 * 该片已参加过的电影节及所获奖项
...@@ -190,7 +190,7 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -190,7 +190,7 @@ public class Fc_member_film implements java.io.Serializable {
/** /**
* 是否显示 1显示 2不显示 * 是否显示 1显示 2不显示
*/ */
private Byte is_show; private Integer is_show;
/** /**
* 影片申请公司 * 影片申请公司
...@@ -255,7 +255,7 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -255,7 +255,7 @@ public class Fc_member_film implements java.io.Serializable {
/** /**
* 状态 * 状态
*/ */
private Byte apply_state; private Integer apply_state;
/** /**
* 区域 * 区域
...@@ -265,7 +265,7 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -265,7 +265,7 @@ public class Fc_member_film implements java.io.Serializable {
/** /**
* 状态 * 状态
*/ */
private Byte is_check_director; private Integer is_check_director;
/** /**
* 通过时间 * 通过时间
...@@ -335,7 +335,7 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -335,7 +335,7 @@ public class Fc_member_film implements java.io.Serializable {
* @param is_check_director 状态 * @param is_check_director 状态
* @param pass_time 通过时间 * @param pass_time 通过时间
*/ */
public Fc_member_film(Long id, String film_no, String origion_name, String en_name, String cn_name, Byte type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Byte enroll_type, Byte is_like_show, Long create_time, Integer member_id, String create_ip, Byte state, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long last_modify_time, String film_side_demand, String film_total_time, Byte is_show, String film_apply_company, String film_apply_realname, String film_apply_email, String film_apply_tel, String film_apply_mobile, String film_apply_country, String enroll_type_name_other, String film_format_url, String film_format_passw, String film_format_other, String film_type_name_short, String lang, Byte apply_state, String film_district, Byte is_check_director, Long pass_time) { public Fc_member_film(Long id, String film_no, String origion_name, String en_name, String cn_name, Integer type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Integer enroll_type, Integer is_like_show, Long create_time, Integer member_id, String create_ip, Integer state, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long last_modify_time, String film_side_demand, String film_total_time, Integer is_show, String film_apply_company, String film_apply_realname, String film_apply_email, String film_apply_tel, String film_apply_mobile, String film_apply_country, String enroll_type_name_other, String film_format_url, String film_format_passw, String film_format_other, String film_type_name_short, String lang, Integer apply_state, String film_district, Integer is_check_director, Long pass_time) {
this.id = id; this.id = id;
this.film_no = film_no; this.film_no = film_no;
this.origion_name = origion_name; this.origion_name = origion_name;
...@@ -430,11 +430,11 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -430,11 +430,11 @@ public class Fc_member_film implements java.io.Serializable {
return cn_name; return cn_name;
} }
public void setType(Byte type) { public void setType(Integer type) {
this.type = type; this.type = type;
} }
public Byte getType() { public Integer getType() {
return type; return type;
} }
...@@ -542,19 +542,19 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -542,19 +542,19 @@ public class Fc_member_film implements java.io.Serializable {
return enroll_type_name; return enroll_type_name;
} }
public void setEnroll_type(Byte enroll_type) { public void setEnroll_type(Integer enroll_type) {
this.enroll_type = enroll_type; this.enroll_type = enroll_type;
} }
public Byte getEnroll_type() { public Integer getEnroll_type() {
return enroll_type; return enroll_type;
} }
public void setIs_like_show(Byte is_like_show) { public void setIs_like_show(Integer is_like_show) {
this.is_like_show = is_like_show; this.is_like_show = is_like_show;
} }
public Byte getIs_like_show() { public Integer getIs_like_show() {
return is_like_show; return is_like_show;
} }
...@@ -582,11 +582,11 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -582,11 +582,11 @@ public class Fc_member_film implements java.io.Serializable {
return create_ip; return create_ip;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
...@@ -670,11 +670,11 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -670,11 +670,11 @@ public class Fc_member_film implements java.io.Serializable {
return film_total_time; return film_total_time;
} }
public void setIs_show(Byte is_show) { public void setIs_show(Integer is_show) {
this.is_show = is_show; this.is_show = is_show;
} }
public Byte getIs_show() { public Integer getIs_show() {
return is_show; return is_show;
} }
...@@ -774,11 +774,11 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -774,11 +774,11 @@ public class Fc_member_film implements java.io.Serializable {
return lang; return lang;
} }
public void setApply_state(Byte apply_state) { public void setApply_state(Integer apply_state) {
this.apply_state = apply_state; this.apply_state = apply_state;
} }
public Byte getApply_state() { public Integer getApply_state() {
return apply_state; return apply_state;
} }
...@@ -790,11 +790,11 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -790,11 +790,11 @@ public class Fc_member_film implements java.io.Serializable {
return film_district; return film_district;
} }
public void setIs_check_director(Byte is_check_director) { public void setIs_check_director(Integer is_check_director) {
this.is_check_director = is_check_director; this.is_check_director = is_check_director;
} }
public Byte getIs_check_director() { public Integer getIs_check_director() {
return is_check_director; return is_check_director;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_member_film_5_31") @Entity(name="fc_member_film_5_31")
...@@ -40,7 +40,7 @@ public class Fc_member_film_5_31 implements java.io.Serializable { ...@@ -40,7 +40,7 @@ public class Fc_member_film_5_31 implements java.io.Serializable {
/** /**
* 类型 1 电影 2电视 * 类型 1 电影 2电视
*/ */
private Byte type; private Integer type;
/** /**
* 影片内容分组id * 影片内容分组id
...@@ -110,12 +110,12 @@ public class Fc_member_film_5_31 implements java.io.Serializable { ...@@ -110,12 +110,12 @@ public class Fc_member_film_5_31 implements java.io.Serializable {
/** /**
* 报名类型 * 报名类型
*/ */
private Byte enroll_type; private Integer enroll_type;
/** /**
* 是否愿意参展 * 是否愿意参展
*/ */
private Byte is_like_show; private Integer is_like_show;
/** /**
* 添加时间 * 添加时间
...@@ -135,7 +135,7 @@ public class Fc_member_film_5_31 implements java.io.Serializable { ...@@ -135,7 +135,7 @@ public class Fc_member_film_5_31 implements java.io.Serializable {
/** /**
* 状态 * 状态
*/ */
private Byte state; private Integer state;
/** /**
* 该片已参加过的电影节及所获奖项 * 该片已参加过的电影节及所获奖项
...@@ -190,7 +190,7 @@ public class Fc_member_film_5_31 implements java.io.Serializable { ...@@ -190,7 +190,7 @@ public class Fc_member_film_5_31 implements java.io.Serializable {
/** /**
* 是否显示 1显示 2不显示 * 是否显示 1显示 2不显示
*/ */
private Byte is_show; private Integer is_show;
/** /**
* 影片申请公司 * 影片申请公司
...@@ -255,7 +255,7 @@ public class Fc_member_film_5_31 implements java.io.Serializable { ...@@ -255,7 +255,7 @@ public class Fc_member_film_5_31 implements java.io.Serializable {
/** /**
* 状态 * 状态
*/ */
private Byte apply_state; private Integer apply_state;
/** /**
* 区域 * 区域
...@@ -265,7 +265,7 @@ public class Fc_member_film_5_31 implements java.io.Serializable { ...@@ -265,7 +265,7 @@ public class Fc_member_film_5_31 implements java.io.Serializable {
/** /**
* 状态 * 状态
*/ */
private Byte is_check_director; private Integer is_check_director;
/** /**
* 通过时间 * 通过时间
...@@ -335,7 +335,7 @@ public class Fc_member_film_5_31 implements java.io.Serializable { ...@@ -335,7 +335,7 @@ public class Fc_member_film_5_31 implements java.io.Serializable {
* @param is_check_director 状态 * @param is_check_director 状态
* @param pass_time 通过时间 * @param pass_time 通过时间
*/ */
public Fc_member_film_5_31(Long id, String film_no, String origion_name, String en_name, String cn_name, Byte type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Byte enroll_type, Byte is_like_show, Long create_time, Integer member_id, String create_ip, Byte state, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long last_modify_time, String film_side_demand, String film_total_time, Byte is_show, String film_apply_company, String film_apply_realname, String film_apply_email, String film_apply_tel, String film_apply_mobile, String film_apply_country, String enroll_type_name_other, String film_format_url, String film_format_passw, String film_format_other, String film_type_name_short, String lang, Byte apply_state, String film_district, Byte is_check_director, Long pass_time) { public Fc_member_film_5_31(Long id, String film_no, String origion_name, String en_name, String cn_name, Integer type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Integer enroll_type, Integer is_like_show, Long create_time, Integer member_id, String create_ip, Integer state, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long last_modify_time, String film_side_demand, String film_total_time, Integer is_show, String film_apply_company, String film_apply_realname, String film_apply_email, String film_apply_tel, String film_apply_mobile, String film_apply_country, String enroll_type_name_other, String film_format_url, String film_format_passw, String film_format_other, String film_type_name_short, String lang, Integer apply_state, String film_district, Integer is_check_director, Long pass_time) {
this.id = id; this.id = id;
this.film_no = film_no; this.film_no = film_no;
this.origion_name = origion_name; this.origion_name = origion_name;
...@@ -430,11 +430,11 @@ public class Fc_member_film_5_31 implements java.io.Serializable { ...@@ -430,11 +430,11 @@ public class Fc_member_film_5_31 implements java.io.Serializable {
return cn_name; return cn_name;
} }
public void setType(Byte type) { public void setType(Integer type) {
this.type = type; this.type = type;
} }
public Byte getType() { public Integer getType() {
return type; return type;
} }
...@@ -542,19 +542,19 @@ public class Fc_member_film_5_31 implements java.io.Serializable { ...@@ -542,19 +542,19 @@ public class Fc_member_film_5_31 implements java.io.Serializable {
return enroll_type_name; return enroll_type_name;
} }
public void setEnroll_type(Byte enroll_type) { public void setEnroll_type(Integer enroll_type) {
this.enroll_type = enroll_type; this.enroll_type = enroll_type;
} }
public Byte getEnroll_type() { public Integer getEnroll_type() {
return enroll_type; return enroll_type;
} }
public void setIs_like_show(Byte is_like_show) { public void setIs_like_show(Integer is_like_show) {
this.is_like_show = is_like_show; this.is_like_show = is_like_show;
} }
public Byte getIs_like_show() { public Integer getIs_like_show() {
return is_like_show; return is_like_show;
} }
...@@ -582,11 +582,11 @@ public class Fc_member_film_5_31 implements java.io.Serializable { ...@@ -582,11 +582,11 @@ public class Fc_member_film_5_31 implements java.io.Serializable {
return create_ip; return create_ip;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
...@@ -670,11 +670,11 @@ public class Fc_member_film_5_31 implements java.io.Serializable { ...@@ -670,11 +670,11 @@ public class Fc_member_film_5_31 implements java.io.Serializable {
return film_total_time; return film_total_time;
} }
public void setIs_show(Byte is_show) { public void setIs_show(Integer is_show) {
this.is_show = is_show; this.is_show = is_show;
} }
public Byte getIs_show() { public Integer getIs_show() {
return is_show; return is_show;
} }
...@@ -774,11 +774,11 @@ public class Fc_member_film_5_31 implements java.io.Serializable { ...@@ -774,11 +774,11 @@ public class Fc_member_film_5_31 implements java.io.Serializable {
return lang; return lang;
} }
public void setApply_state(Byte apply_state) { public void setApply_state(Integer apply_state) {
this.apply_state = apply_state; this.apply_state = apply_state;
} }
public Byte getApply_state() { public Integer getApply_state() {
return apply_state; return apply_state;
} }
...@@ -790,11 +790,11 @@ public class Fc_member_film_5_31 implements java.io.Serializable { ...@@ -790,11 +790,11 @@ public class Fc_member_film_5_31 implements java.io.Serializable {
return film_district; return film_district;
} }
public void setIs_check_director(Byte is_check_director) { public void setIs_check_director(Integer is_check_director) {
this.is_check_director = is_check_director; this.is_check_director = is_check_director;
} }
public Byte getIs_check_director() { public Integer getIs_check_director() {
return is_check_director; return is_check_director;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_member_film_all") @Entity(name="fc_member_film_all")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_member_film_director") @Entity(name="fc_member_film_director")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_member_film_issuer") @Entity(name="fc_member_film_issuer")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_member_film_playactor") @Entity(name="fc_member_film_playactor")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_member_film_show") @Entity(name="fc_member_film_show")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_member_logs") @Entity(name="fc_member_logs")
...@@ -20,7 +20,7 @@ public class Fc_member_logs implements java.io.Serializable { ...@@ -20,7 +20,7 @@ public class Fc_member_logs implements java.io.Serializable {
@Id @Id
private Long log_id; private Long log_id;
private Byte log_type; private Integer log_type;
private Long log_time; private Long log_time;
...@@ -68,7 +68,7 @@ public class Fc_member_logs implements java.io.Serializable { ...@@ -68,7 +68,7 @@ public class Fc_member_logs implements java.io.Serializable {
* @param group_id 操作时用户所在组 * @param group_id 操作时用户所在组
* @param user_agent 浏览器类型 * @param user_agent 浏览器类型
*/ */
public Fc_member_logs(Long log_id, Byte log_type, Long log_time, String log_content, String log_ip, Long uid, Integer group_id, String user_agent) { public Fc_member_logs(Long log_id, Integer log_type, Long log_time, String log_content, String log_ip, Long uid, Integer group_id, String user_agent) {
this.log_id = log_id; this.log_id = log_id;
this.log_type = log_type; this.log_type = log_type;
this.log_time = log_time; this.log_time = log_time;
...@@ -87,11 +87,11 @@ public class Fc_member_logs implements java.io.Serializable { ...@@ -87,11 +87,11 @@ public class Fc_member_logs implements java.io.Serializable {
return log_id; return log_id;
} }
public void setLog_type(Byte log_type) { public void setLog_type(Integer log_type) {
this.log_type = log_type; this.log_type = log_type;
} }
public Byte getLog_type() { public Integer getLog_type() {
return log_type; return log_type;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_no_invite") @Entity(name="fc_no_invite")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_notify") @Entity(name="fc_notify")
...@@ -28,7 +28,7 @@ public class Fc_notify implements java.io.Serializable { ...@@ -28,7 +28,7 @@ public class Fc_notify implements java.io.Serializable {
/** /**
* 是否星标 1不是 2是 * 是否星标 1不是 2是
*/ */
private Byte star_mark; private Integer star_mark;
private Long addtime; private Long addtime;
...@@ -47,17 +47,17 @@ public class Fc_notify implements java.io.Serializable { ...@@ -47,17 +47,17 @@ public class Fc_notify implements java.io.Serializable {
/** /**
* 是否分配 1未分配 2已分配 * 是否分配 1未分配 2已分配
*/ */
private Byte is_distribution; private Integer is_distribution;
/** /**
* 是否已读 1未读 2已读 * 是否已读 1未读 2已读
*/ */
private Byte is_read; private Integer is_read;
/** /**
* 是否首次争议 1是 2不是 * 是否首次争议 1是 2不是
*/ */
private Byte is_first; private Integer is_first;
/** /**
...@@ -80,7 +80,7 @@ public class Fc_notify implements java.io.Serializable { ...@@ -80,7 +80,7 @@ public class Fc_notify implements java.io.Serializable {
* @param is_read 是否已读 1未读 2已读 * @param is_read 是否已读 1未读 2已读
* @param is_first 是否首次争议 1是 2不是 * @param is_first 是否首次争议 1是 2不是
*/ */
public Fc_notify(Long id, String title, Byte star_mark, Long addtime, Long film_id, Integer rounds, String notify_text, Byte is_distribution, Byte is_read, Byte is_first) { public Fc_notify(Long id, String title, Integer star_mark, Long addtime, Long film_id, Integer rounds, String notify_text, Integer is_distribution, Integer is_read, Integer is_first) {
this.id = id; this.id = id;
this.title = title; this.title = title;
this.star_mark = star_mark; this.star_mark = star_mark;
...@@ -109,11 +109,11 @@ public class Fc_notify implements java.io.Serializable { ...@@ -109,11 +109,11 @@ public class Fc_notify implements java.io.Serializable {
return title; return title;
} }
public void setStar_mark(Byte star_mark) { public void setStar_mark(Integer star_mark) {
this.star_mark = star_mark; this.star_mark = star_mark;
} }
public Byte getStar_mark() { public Integer getStar_mark() {
return star_mark; return star_mark;
} }
...@@ -149,27 +149,27 @@ public class Fc_notify implements java.io.Serializable { ...@@ -149,27 +149,27 @@ public class Fc_notify implements java.io.Serializable {
return notify_text; return notify_text;
} }
public void setIs_distribution(Byte is_distribution) { public void setIs_distribution(Integer is_distribution) {
this.is_distribution = is_distribution; this.is_distribution = is_distribution;
} }
public Byte getIs_distribution() { public Integer getIs_distribution() {
return is_distribution; return is_distribution;
} }
public void setIs_read(Byte is_read) { public void setIs_read(Integer is_read) {
this.is_read = is_read; this.is_read = is_read;
} }
public Byte getIs_read() { public Integer getIs_read() {
return is_read; return is_read;
} }
public void setIs_first(Byte is_first) { public void setIs_first(Integer is_first) {
this.is_first = is_first; this.is_first = is_first;
} }
public Byte getIs_first() { public Integer getIs_first() {
return is_first; return is_first;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_page_errors") @Entity(name="fc_page_errors")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_plan_cinema") @Entity(name="fc_plan_cinema")
...@@ -65,7 +65,7 @@ public class Fc_plan_cinema implements java.io.Serializable { ...@@ -65,7 +65,7 @@ public class Fc_plan_cinema implements java.io.Serializable {
/** /**
* 状态 0正常 1关闭 2删除 * 状态 0正常 1关闭 2删除
*/ */
private Byte status; private Integer status;
/** /**
* 影厅名称 * 影厅名称
...@@ -107,7 +107,7 @@ public class Fc_plan_cinema implements java.io.Serializable { ...@@ -107,7 +107,7 @@ public class Fc_plan_cinema implements java.io.Serializable {
* @param halls_en_name 影厅名称(英文) * @param halls_en_name 影厅名称(英文)
* @param sort 排序 * @param sort 排序
*/ */
public Fc_plan_cinema(Long cinema_id, String cinema_no, String cinema_name, String cinema_en_name, String cinema_address, String cinema_en_address, String telphone, String hall_floor, Long addtime, Long lastuptime, Byte status, String halls_name, String halls_en_name, Long sort) { public Fc_plan_cinema(Long cinema_id, String cinema_no, String cinema_name, String cinema_en_name, String cinema_address, String cinema_en_address, String telphone, String hall_floor, Long addtime, Long lastuptime, Integer status, String halls_name, String halls_en_name, Long sort) {
this.cinema_id = cinema_id; this.cinema_id = cinema_id;
this.cinema_no = cinema_no; this.cinema_no = cinema_no;
this.cinema_name = cinema_name; this.cinema_name = cinema_name;
...@@ -204,11 +204,11 @@ public class Fc_plan_cinema implements java.io.Serializable { ...@@ -204,11 +204,11 @@ public class Fc_plan_cinema implements java.io.Serializable {
return lastuptime; return lastuptime;
} }
public void setStatus(Byte status) { public void setStatus(Integer status) {
this.status = status; this.status = status;
} }
public Byte getStatus() { public Integer getStatus() {
return status; return status;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_plan_cinemahalls") @Entity(name="fc_plan_cinemahalls")
...@@ -31,7 +31,7 @@ public class Fc_plan_cinemahalls implements java.io.Serializable { ...@@ -31,7 +31,7 @@ public class Fc_plan_cinemahalls implements java.io.Serializable {
/** /**
* 状态 状态 0正常 1关闭 2删除 * 状态 状态 0正常 1关闭 2删除
*/ */
private Byte status; private Integer status;
/** /**
* 添加时间 * 添加时间
...@@ -62,7 +62,7 @@ public class Fc_plan_cinemahalls implements java.io.Serializable { ...@@ -62,7 +62,7 @@ public class Fc_plan_cinemahalls implements java.io.Serializable {
* @param addtime 添加时间 * @param addtime 添加时间
* @param lastuptime 最后修改时间 * @param lastuptime 最后修改时间
*/ */
public Fc_plan_cinemahalls(Long halls_id, Long cinema_id, String halls_no, String halls_name, String halls_type, Byte status, Long addtime, Long lastuptime) { public Fc_plan_cinemahalls(Long halls_id, Long cinema_id, String halls_no, String halls_name, String halls_type, Integer status, Long addtime, Long lastuptime) {
this.halls_id = halls_id; this.halls_id = halls_id;
this.cinema_id = cinema_id; this.cinema_id = cinema_id;
this.halls_no = halls_no; this.halls_no = halls_no;
...@@ -113,11 +113,11 @@ public class Fc_plan_cinemahalls implements java.io.Serializable { ...@@ -113,11 +113,11 @@ public class Fc_plan_cinemahalls implements java.io.Serializable {
return halls_type; return halls_type;
} }
public void setStatus(Byte status) { public void setStatus(Integer status) {
this.status = status; this.status = status;
} }
public Byte getStatus() { public Integer getStatus() {
return status; return status;
} }
......
...@@ -6,8 +6,8 @@ import javax.persistence.Entity; ...@@ -6,8 +6,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_plan_playinfo") @Entity(name="fc_plan_playinfo")
...@@ -56,7 +56,7 @@ public class Fc_plan_playinfo implements java.io.Serializable { ...@@ -56,7 +56,7 @@ public class Fc_plan_playinfo implements java.io.Serializable {
/** /**
* 状态 0正常 1关闭 2删除 * 状态 0正常 1关闭 2删除
*/ */
private Byte status; private Integer status;
/** /**
* 添加时间 * 添加时间
...@@ -76,7 +76,7 @@ public class Fc_plan_playinfo implements java.io.Serializable { ...@@ -76,7 +76,7 @@ public class Fc_plan_playinfo implements java.io.Serializable {
/** /**
* 是否参与排片 0不参与排片 1参与 * 是否参与排片 0不参与排片 1参与
*/ */
private Byte is_join; private Integer is_join;
/** /**
* 唯一值 * 唯一值
...@@ -91,17 +91,17 @@ public class Fc_plan_playinfo implements java.io.Serializable { ...@@ -91,17 +91,17 @@ public class Fc_plan_playinfo implements java.io.Serializable {
/** /**
* 价格类型 1影院票价 2 设定特殊票价 * 价格类型 1影院票价 2 设定特殊票价
*/ */
private Byte pricetype; private Integer pricetype;
/** /**
* 是否排多场 0不是 1是 * 是否排多场 0不是 1是
*/ */
private Byte is_more; private Integer is_more;
/** /**
* 是否重点场次 1是 0不是 * 是否重点场次 1是 0不是
*/ */
private Byte is_important; private Integer is_important;
/** /**
* 编辑次数 * 编辑次数
...@@ -111,7 +111,7 @@ public class Fc_plan_playinfo implements java.io.Serializable { ...@@ -111,7 +111,7 @@ public class Fc_plan_playinfo implements java.io.Serializable {
/** /**
* 是否强制 0不是 1是 * 是否强制 0不是 1是
*/ */
private Byte is_force; private Integer is_force;
/** /**
...@@ -144,7 +144,7 @@ public class Fc_plan_playinfo implements java.io.Serializable { ...@@ -144,7 +144,7 @@ public class Fc_plan_playinfo implements java.io.Serializable {
* @param editnum 编辑次数 * @param editnum 编辑次数
* @param is_force 是否强制 0不是 1是 * @param is_force 是否强制 0不是 1是
*/ */
public Fc_plan_playinfo(Long id, Integer screenings_id, Long film_id, Long cinema_id, String show_date, String show_time, BigDecimal price, String version, Byte status, Long addtime, Long lastuptime, String show_type, Byte is_join, String md5, Integer new_price, Byte pricetype, Byte is_more, Byte is_important, Integer editnum, Byte is_force) { public Fc_plan_playinfo(Long id, Integer screenings_id, Long film_id, Long cinema_id, String show_date, String show_time, BigDecimal price, String version, Integer status, Long addtime, Long lastuptime, String show_type, Integer is_join, String md5, Integer new_price, Integer pricetype, Integer is_more, Integer is_important, Integer editnum, Integer is_force) {
this.id = id; this.id = id;
this.screenings_id = screenings_id; this.screenings_id = screenings_id;
this.film_id = film_id; this.film_id = film_id;
...@@ -231,11 +231,11 @@ public class Fc_plan_playinfo implements java.io.Serializable { ...@@ -231,11 +231,11 @@ public class Fc_plan_playinfo implements java.io.Serializable {
return version; return version;
} }
public void setStatus(Byte status) { public void setStatus(Integer status) {
this.status = status; this.status = status;
} }
public Byte getStatus() { public Integer getStatus() {
return status; return status;
} }
...@@ -263,11 +263,11 @@ public class Fc_plan_playinfo implements java.io.Serializable { ...@@ -263,11 +263,11 @@ public class Fc_plan_playinfo implements java.io.Serializable {
return show_type; return show_type;
} }
public void setIs_join(Byte is_join) { public void setIs_join(Integer is_join) {
this.is_join = is_join; this.is_join = is_join;
} }
public Byte getIs_join() { public Integer getIs_join() {
return is_join; return is_join;
} }
...@@ -287,27 +287,27 @@ public class Fc_plan_playinfo implements java.io.Serializable { ...@@ -287,27 +287,27 @@ public class Fc_plan_playinfo implements java.io.Serializable {
return new_price; return new_price;
} }
public void setPricetype(Byte pricetype) { public void setPricetype(Integer pricetype) {
this.pricetype = pricetype; this.pricetype = pricetype;
} }
public Byte getPricetype() { public Integer getPricetype() {
return pricetype; return pricetype;
} }
public void setIs_more(Byte is_more) { public void setIs_more(Integer is_more) {
this.is_more = is_more; this.is_more = is_more;
} }
public Byte getIs_more() { public Integer getIs_more() {
return is_more; return is_more;
} }
public void setIs_important(Byte is_important) { public void setIs_important(Integer is_important) {
this.is_important = is_important; this.is_important = is_important;
} }
public Byte getIs_important() { public Integer getIs_important() {
return is_important; return is_important;
} }
...@@ -319,11 +319,11 @@ public class Fc_plan_playinfo implements java.io.Serializable { ...@@ -319,11 +319,11 @@ public class Fc_plan_playinfo implements java.io.Serializable {
return editnum; return editnum;
} }
public void setIs_force(Byte is_force) { public void setIs_force(Integer is_force) {
this.is_force = is_force; this.is_force = is_force;
} }
public Byte getIs_force() { public Integer getIs_force() {
return is_force; return is_force;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_plan_playinfo_second") @Entity(name="fc_plan_playinfo_second")
...@@ -48,7 +48,7 @@ public class Fc_plan_playinfo_second implements java.io.Serializable { ...@@ -48,7 +48,7 @@ public class Fc_plan_playinfo_second implements java.io.Serializable {
/** /**
* 价格类型 1影院票价 2 设定特殊票价 * 价格类型 1影院票价 2 设定特殊票价
*/ */
private Byte pricetype; private Integer pricetype;
/** /**
* 最后修改时间 * 最后修改时间
...@@ -74,7 +74,7 @@ public class Fc_plan_playinfo_second implements java.io.Serializable { ...@@ -74,7 +74,7 @@ public class Fc_plan_playinfo_second implements java.io.Serializable {
* @param pricetype 价格类型 1影院票价 2 设定特殊票价 * @param pricetype 价格类型 1影院票价 2 设定特殊票价
* @param lastuptime 最后修改时间 * @param lastuptime 最后修改时间
*/ */
public Fc_plan_playinfo_second(Long sid, Integer pid, Integer film_id, Integer addtime, String show_type, Integer new_price, Byte pricetype, Integer lastuptime) { public Fc_plan_playinfo_second(Long sid, Integer pid, Integer film_id, Integer addtime, String show_type, Integer new_price, Integer pricetype, Integer lastuptime) {
this.sid = sid; this.sid = sid;
this.pid = pid; this.pid = pid;
this.film_id = film_id; this.film_id = film_id;
...@@ -133,11 +133,11 @@ public class Fc_plan_playinfo_second implements java.io.Serializable { ...@@ -133,11 +133,11 @@ public class Fc_plan_playinfo_second implements java.io.Serializable {
return new_price; return new_price;
} }
public void setPricetype(Byte pricetype) { public void setPricetype(Integer pricetype) {
this.pricetype = pricetype; this.pricetype = pricetype;
} }
public Byte getPricetype() { public Integer getPricetype() {
return pricetype; return pricetype;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_review_group") @Entity(name="fc_review_group")
...@@ -34,7 +34,7 @@ public class Fc_review_group implements java.io.Serializable { ...@@ -34,7 +34,7 @@ public class Fc_review_group implements java.io.Serializable {
/** /**
* 1正常 2禁用 * 1正常 2禁用
*/ */
private Byte state; private Integer state;
/** /**
* 所属分组 * 所属分组
...@@ -44,7 +44,7 @@ public class Fc_review_group implements java.io.Serializable { ...@@ -44,7 +44,7 @@ public class Fc_review_group implements java.io.Serializable {
/** /**
* 用户环节 * 用户环节
*/ */
private Byte review_round; private Integer review_round;
/** /**
* 修改时间 * 修改时间
...@@ -71,7 +71,7 @@ public class Fc_review_group implements java.io.Serializable { ...@@ -71,7 +71,7 @@ public class Fc_review_group implements java.io.Serializable {
* @param review_round 用户环节 * @param review_round 用户环节
* @param update_time 修改时间 * @param update_time 修改时间
*/ */
public Fc_review_group(Long id, String review_group_name, Long create_time, String create_ip, Long adminid, Byte state, Long group_id, Byte review_round, Long update_time) { public Fc_review_group(Long id, String review_group_name, Long create_time, String create_ip, Long adminid, Integer state, Long group_id, Integer review_round, Long update_time) {
this.id = id; this.id = id;
this.review_group_name = review_group_name; this.review_group_name = review_group_name;
this.create_time = create_time; this.create_time = create_time;
...@@ -123,11 +123,11 @@ public class Fc_review_group implements java.io.Serializable { ...@@ -123,11 +123,11 @@ public class Fc_review_group implements java.io.Serializable {
return adminid; return adminid;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
...@@ -139,11 +139,11 @@ public class Fc_review_group implements java.io.Serializable { ...@@ -139,11 +139,11 @@ public class Fc_review_group implements java.io.Serializable {
return group_id; return group_id;
} }
public void setReview_round(Byte review_round) { public void setReview_round(Integer review_round) {
this.review_round = review_round; this.review_round = review_round;
} }
public Byte getReview_round() { public Integer getReview_round() {
return review_round; return review_round;
} }
......
...@@ -3,8 +3,8 @@ package com.egolm.film.bean; ...@@ -3,8 +3,8 @@ package com.egolm.film.bean;
import javax.persistence.Entity; import javax.persistence.Entity;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_review_group_user") @Entity(name="fc_review_group_user")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_station_notice") @Entity(name="fc_station_notice")
...@@ -40,7 +40,7 @@ public class Fc_station_notice implements java.io.Serializable { ...@@ -40,7 +40,7 @@ public class Fc_station_notice implements java.io.Serializable {
/** /**
* 是否重要 1重要 2不重要 * 是否重要 1重要 2不重要
*/ */
private Byte is_import; private Integer is_import;
/** /**
* 可见分组 * 可见分组
...@@ -65,7 +65,7 @@ public class Fc_station_notice implements java.io.Serializable { ...@@ -65,7 +65,7 @@ public class Fc_station_notice implements java.io.Serializable {
* @param is_import 是否重要 1重要 2不重要 * @param is_import 是否重要 1重要 2不重要
* @param visit_group 可见分组 * @param visit_group 可见分组
*/ */
public Fc_station_notice(Long nid, String title, String content, Long create_time, Long adminid, Byte is_import, String visit_group) { public Fc_station_notice(Long nid, String title, String content, Long create_time, Long adminid, Integer is_import, String visit_group) {
this.nid = nid; this.nid = nid;
this.title = title; this.title = title;
this.content = content; this.content = content;
...@@ -115,11 +115,11 @@ public class Fc_station_notice implements java.io.Serializable { ...@@ -115,11 +115,11 @@ public class Fc_station_notice implements java.io.Serializable {
return adminid; return adminid;
} }
public void setIs_import(Byte is_import) { public void setIs_import(Integer is_import) {
this.is_import = is_import; this.is_import = is_import;
} }
public Byte getIs_import() { public Integer getIs_import() {
return is_import; return is_import;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_station_notice_group") @Entity(name="fc_station_notice_group")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_system_config") @Entity(name="fc_system_config")
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_upload_file") @Entity(name="fc_upload_file")
...@@ -88,7 +88,7 @@ public class Fc_upload_file implements java.io.Serializable { ...@@ -88,7 +88,7 @@ public class Fc_upload_file implements java.io.Serializable {
/** /**
* 文件类型 1导入 2更新 * 文件类型 1导入 2更新
*/ */
private Byte type; private Integer type;
/** /**
...@@ -116,7 +116,7 @@ public class Fc_upload_file implements java.io.Serializable { ...@@ -116,7 +116,7 @@ public class Fc_upload_file implements java.io.Serializable {
* @param import_total 本次导入总条数 * @param import_total 本次导入总条数
* @param type 文件类型 1导入 2更新 * @param type 文件类型 1导入 2更新
*/ */
public Fc_upload_file(Long id, String file_name, Long adminid, Long create_time, String orgin_file_name, String file_size, String file_md5, String file_sha1, String file_type, String file_ext, Integer total_num, Integer succ_num, Integer err_num, Integer import_total, Byte type) { public Fc_upload_file(Long id, String file_name, Long adminid, Long create_time, String orgin_file_name, String file_size, String file_md5, String file_sha1, String file_type, String file_ext, Integer total_num, Integer succ_num, Integer err_num, Integer import_total, Integer type) {
this.id = id; this.id = id;
this.file_name = file_name; this.file_name = file_name;
this.adminid = adminid; this.adminid = adminid;
...@@ -246,11 +246,11 @@ public class Fc_upload_file implements java.io.Serializable { ...@@ -246,11 +246,11 @@ public class Fc_upload_file implements java.io.Serializable {
return import_total; return import_total;
} }
public void setType(Byte type) { public void setType(Integer type) {
this.type = type; this.type = type;
} }
public Byte getType() { public Integer getType() {
return type; return type;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_user") @Entity(name="fc_user")
...@@ -70,7 +70,7 @@ public class Fc_user implements java.io.Serializable { ...@@ -70,7 +70,7 @@ public class Fc_user implements java.io.Serializable {
/** /**
* 见状态码 * 见状态码
*/ */
private Byte state; private Integer state;
/** /**
* 用户组id * 用户组id
...@@ -100,7 +100,7 @@ public class Fc_user implements java.io.Serializable { ...@@ -100,7 +100,7 @@ public class Fc_user implements java.io.Serializable {
/** /**
* 性别 1男 2女 * 性别 1男 2女
*/ */
private Byte sex; private Integer sex;
/** /**
* 居住地址 * 居住地址
...@@ -130,7 +130,7 @@ public class Fc_user implements java.io.Serializable { ...@@ -130,7 +130,7 @@ public class Fc_user implements java.io.Serializable {
/** /**
* 是否显示,工作说明 0不显示 1显示 * 是否显示,工作说明 0不显示 1显示
*/ */
private Byte is_show_job_desc; private Integer is_show_job_desc;
/** /**
* 最后修改时间 * 最后修改时间
...@@ -176,7 +176,7 @@ public class Fc_user implements java.io.Serializable { ...@@ -176,7 +176,7 @@ public class Fc_user implements java.io.Serializable {
* @param lastuptime 最后修改时间 * @param lastuptime 最后修改时间
* @param film_num * @param film_num
*/ */
public Fc_user(Long uid, String username, String password, String realname, String salt, Long create_time, String create_ip, Long last_login_time, Long login_time, String last_login_ip, String login_ip, Byte state, Integer group_id, Long adminid, String area, String company, String job, Byte sex, String address, Long expire_date, String email, String tel, String token, Byte is_show_job_desc, Integer lastuptime, Integer film_num) { public Fc_user(Long uid, String username, String password, String realname, String salt, Long create_time, String create_ip, Long last_login_time, Long login_time, String last_login_ip, String login_ip, Integer state, Integer group_id, Long adminid, String area, String company, String job, Integer sex, String address, Long expire_date, String email, String tel, String token, Integer is_show_job_desc, Integer lastuptime, Integer film_num) {
this.uid = uid; this.uid = uid;
this.username = username; this.username = username;
this.password = password; this.password = password;
...@@ -293,11 +293,11 @@ public class Fc_user implements java.io.Serializable { ...@@ -293,11 +293,11 @@ public class Fc_user implements java.io.Serializable {
return login_ip; return login_ip;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
...@@ -341,11 +341,11 @@ public class Fc_user implements java.io.Serializable { ...@@ -341,11 +341,11 @@ public class Fc_user implements java.io.Serializable {
return job; return job;
} }
public void setSex(Byte sex) { public void setSex(Integer sex) {
this.sex = sex; this.sex = sex;
} }
public Byte getSex() { public Integer getSex() {
return sex; return sex;
} }
...@@ -389,11 +389,11 @@ public class Fc_user implements java.io.Serializable { ...@@ -389,11 +389,11 @@ public class Fc_user implements java.io.Serializable {
return token; return token;
} }
public void setIs_show_job_desc(Byte is_show_job_desc) { public void setIs_show_job_desc(Integer is_show_job_desc) {
this.is_show_job_desc = is_show_job_desc; this.is_show_job_desc = is_show_job_desc;
} }
public Byte getIs_show_job_desc() { public Integer getIs_show_job_desc() {
return is_show_job_desc; return is_show_job_desc;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_user_group") @Entity(name="fc_user_group")
...@@ -43,7 +43,7 @@ public class Fc_user_group implements java.io.Serializable { ...@@ -43,7 +43,7 @@ public class Fc_user_group implements java.io.Serializable {
/** /**
* 小组状态 * 小组状态
*/ */
private Byte state; private Integer state;
/** /**
* 权限 * 权限
...@@ -80,7 +80,7 @@ public class Fc_user_group implements java.io.Serializable { ...@@ -80,7 +80,7 @@ public class Fc_user_group implements java.io.Serializable {
* @param user_num 成员数量 * @param user_num 成员数量
* @param job_desc 工作介绍 * @param job_desc 工作介绍
*/ */
public Fc_user_group(Integer group_id, String group_name, Long create_time, String create_ip, Long adminid, Byte state, String power, Long user_num, String job_desc) { public Fc_user_group(Integer group_id, String group_name, Long create_time, String create_ip, Long adminid, Integer state, String power, Long user_num, String job_desc) {
this.group_id = group_id; this.group_id = group_id;
this.group_name = group_name; this.group_name = group_name;
this.create_time = create_time; this.create_time = create_time;
...@@ -132,11 +132,11 @@ public class Fc_user_group implements java.io.Serializable { ...@@ -132,11 +132,11 @@ public class Fc_user_group implements java.io.Serializable {
return adminid; return adminid;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
......
...@@ -5,8 +5,8 @@ import javax.persistence.Entity; ...@@ -5,8 +5,8 @@ import javax.persistence.Entity;
import javax.persistence.Id; import javax.persistence.Id;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_user_logs") @Entity(name="fc_user_logs")
...@@ -20,7 +20,7 @@ public class Fc_user_logs implements java.io.Serializable { ...@@ -20,7 +20,7 @@ public class Fc_user_logs implements java.io.Serializable {
@Id @Id
private Long log_id; private Long log_id;
private Byte log_type; private Integer log_type;
private Long log_time; private Long log_time;
...@@ -68,7 +68,7 @@ public class Fc_user_logs implements java.io.Serializable { ...@@ -68,7 +68,7 @@ public class Fc_user_logs implements java.io.Serializable {
* @param group_id 操作时用户所在组 * @param group_id 操作时用户所在组
* @param user_agent 浏览器类型 * @param user_agent 浏览器类型
*/ */
public Fc_user_logs(Long log_id, Byte log_type, Long log_time, String log_content, String log_ip, Long uid, Integer group_id, String user_agent) { public Fc_user_logs(Long log_id, Integer log_type, Long log_time, String log_content, String log_ip, Long uid, Integer group_id, String user_agent) {
this.log_id = log_id; this.log_id = log_id;
this.log_type = log_type; this.log_type = log_type;
this.log_time = log_time; this.log_time = log_time;
...@@ -87,11 +87,11 @@ public class Fc_user_logs implements java.io.Serializable { ...@@ -87,11 +87,11 @@ public class Fc_user_logs implements java.io.Serializable {
return log_id; return log_id;
} }
public void setLog_type(Byte log_type) { public void setLog_type(Integer log_type) {
this.log_type = log_type; this.log_type = log_type;
} }
public Byte getLog_type() { public Integer getLog_type() {
return log_type; return log_type;
} }
......
...@@ -3,8 +3,8 @@ package com.egolm.film.bean; ...@@ -3,8 +3,8 @@ package com.egolm.film.bean;
import javax.persistence.Entity; import javax.persistence.Entity;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_user_review_allot") @Entity(name="fc_user_review_allot")
......
...@@ -3,8 +3,8 @@ package com.egolm.film.bean; ...@@ -3,8 +3,8 @@ package com.egolm.film.bean;
import javax.persistence.Entity; import javax.persistence.Entity;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_view_allot") @Entity(name="fc_view_allot")
...@@ -37,7 +37,7 @@ public class Fc_view_allot implements java.io.Serializable { ...@@ -37,7 +37,7 @@ public class Fc_view_allot implements java.io.Serializable {
/** /**
* 类型 1 电影 2电视 * 类型 1 电影 2电视
*/ */
private Byte type; private Integer type;
/** /**
* 影片内容分组id * 影片内容分组id
...@@ -127,12 +127,12 @@ public class Fc_view_allot implements java.io.Serializable { ...@@ -127,12 +127,12 @@ public class Fc_view_allot implements java.io.Serializable {
/** /**
* 报名类型 * 报名类型
*/ */
private Byte enroll_type; private Integer enroll_type;
/** /**
* 是否愿意参展 * 是否愿意参展
*/ */
private Byte is_like_show; private Integer is_like_show;
/** /**
* 首映地 * 首映地
...@@ -167,7 +167,7 @@ public class Fc_view_allot implements java.io.Serializable { ...@@ -167,7 +167,7 @@ public class Fc_view_allot implements java.io.Serializable {
/** /**
* 状态 * 状态
*/ */
private Byte state; private Integer state;
/** /**
* 颜色标签 * 颜色标签
...@@ -177,17 +177,17 @@ public class Fc_view_allot implements java.io.Serializable { ...@@ -177,17 +177,17 @@ public class Fc_view_allot implements java.io.Serializable {
/** /**
* 当前审核环节 * 当前审核环节
*/ */
private Byte round; private Integer round;
/** /**
* 本环节最后 0不是 1是 * 本环节最后 0不是 1是
*/ */
private Byte is_round_last; private Integer is_round_last;
/** /**
* 是否分配 1已分配 2未分配 * 是否分配 1已分配 2未分配
*/ */
private Byte is_allot; private Integer is_allot;
/** /**
* 该片已参加过的电影节及所获奖项 * 该片已参加过的电影节及所获奖项
...@@ -267,7 +267,7 @@ public class Fc_view_allot implements java.io.Serializable { ...@@ -267,7 +267,7 @@ public class Fc_view_allot implements java.io.Serializable {
/** /**
* 状态 1通过 2否决 3参赛金爵 4参展 5参加亚新 * 状态 1通过 2否决 3参赛金爵 4参展 5参加亚新
*/ */
private Byte review_state; private Integer review_state;
private Long uid; private Long uid;
...@@ -291,7 +291,7 @@ public class Fc_view_allot implements java.io.Serializable { ...@@ -291,7 +291,7 @@ public class Fc_view_allot implements java.io.Serializable {
/** /**
* 暂存状态 * 暂存状态
*/ */
private Byte save_state; private Integer save_state;
/** /**
...@@ -362,7 +362,7 @@ public class Fc_view_allot implements java.io.Serializable { ...@@ -362,7 +362,7 @@ public class Fc_view_allot implements java.io.Serializable {
* @param is_save 是否暂存 1=》是 0=》不是 * @param is_save 是否暂存 1=》是 0=》不是
* @param save_state 暂存状态 * @param save_state 暂存状态
*/ */
public Fc_view_allot(Long id, String film_no, String origion_name, String en_name, String cn_name, Byte type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Byte enroll_type, Byte is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Byte state, String color_tag, Byte round, Byte is_round_last, Byte is_allot, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, Long last_modify_time, Byte review_state, Long uid, Integer review_round, Long push_time, Long film_id, Integer is_save, Byte save_state) { public Fc_view_allot(Long id, String film_no, String origion_name, String en_name, String cn_name, Integer type, Long film_group_id, Integer film_type, String film_type_name, String show_date, Long show_time, String director, String adaptor, String shoot, String music, String film_medium, String film_format, String completion_date, String film_country, String co_production_country, String film_producers, String production_company, String enroll_type_name, Integer enroll_type, Integer is_like_show, String first_play_address, String film_file_name, String film_file_time, Long create_time, Integer adminid, String create_ip, Integer state, String color_tag, Integer round, Integer is_round_last, Integer is_allot, String prize, String dialogue_lang, String subtitle_lang, String play_shanghai, String has_joined_award, String intro, String en_intro, Long file_id, String section_award_1, String section_award_2, String section_award_3, String section_award_4, String section_award_5, String section_award_6, Long last_modify_time, Integer review_state, Long uid, Integer review_round, Long push_time, Long film_id, Integer is_save, Integer save_state) {
this.id = id; this.id = id;
this.film_no = film_no; this.film_no = film_no;
this.origion_name = origion_name; this.origion_name = origion_name;
...@@ -463,11 +463,11 @@ public class Fc_view_allot implements java.io.Serializable { ...@@ -463,11 +463,11 @@ public class Fc_view_allot implements java.io.Serializable {
return cn_name; return cn_name;
} }
public void setType(Byte type) { public void setType(Integer type) {
this.type = type; this.type = type;
} }
public Byte getType() { public Integer getType() {
return type; return type;
} }
...@@ -607,19 +607,19 @@ public class Fc_view_allot implements java.io.Serializable { ...@@ -607,19 +607,19 @@ public class Fc_view_allot implements java.io.Serializable {
return enroll_type_name; return enroll_type_name;
} }
public void setEnroll_type(Byte enroll_type) { public void setEnroll_type(Integer enroll_type) {
this.enroll_type = enroll_type; this.enroll_type = enroll_type;
} }
public Byte getEnroll_type() { public Integer getEnroll_type() {
return enroll_type; return enroll_type;
} }
public void setIs_like_show(Byte is_like_show) { public void setIs_like_show(Integer is_like_show) {
this.is_like_show = is_like_show; this.is_like_show = is_like_show;
} }
public Byte getIs_like_show() { public Integer getIs_like_show() {
return is_like_show; return is_like_show;
} }
...@@ -671,11 +671,11 @@ public class Fc_view_allot implements java.io.Serializable { ...@@ -671,11 +671,11 @@ public class Fc_view_allot implements java.io.Serializable {
return create_ip; return create_ip;
} }
public void setState(Byte state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }
public Byte getState() { public Integer getState() {
return state; return state;
} }
...@@ -687,27 +687,27 @@ public class Fc_view_allot implements java.io.Serializable { ...@@ -687,27 +687,27 @@ public class Fc_view_allot implements java.io.Serializable {
return color_tag; return color_tag;
} }
public void setRound(Byte round) { public void setRound(Integer round) {
this.round = round; this.round = round;
} }
public Byte getRound() { public Integer getRound() {
return round; return round;
} }
public void setIs_round_last(Byte is_round_last) { public void setIs_round_last(Integer is_round_last) {
this.is_round_last = is_round_last; this.is_round_last = is_round_last;
} }
public Byte getIs_round_last() { public Integer getIs_round_last() {
return is_round_last; return is_round_last;
} }
public void setIs_allot(Byte is_allot) { public void setIs_allot(Integer is_allot) {
this.is_allot = is_allot; this.is_allot = is_allot;
} }
public Byte getIs_allot() { public Integer getIs_allot() {
return is_allot; return is_allot;
} }
...@@ -831,11 +831,11 @@ public class Fc_view_allot implements java.io.Serializable { ...@@ -831,11 +831,11 @@ public class Fc_view_allot implements java.io.Serializable {
return last_modify_time; return last_modify_time;
} }
public void setReview_state(Byte review_state) { public void setReview_state(Integer review_state) {
this.review_state = review_state; this.review_state = review_state;
} }
public Byte getReview_state() { public Integer getReview_state() {
return review_state; return review_state;
} }
...@@ -879,11 +879,11 @@ public class Fc_view_allot implements java.io.Serializable { ...@@ -879,11 +879,11 @@ public class Fc_view_allot implements java.io.Serializable {
return is_save; return is_save;
} }
public void setSave_state(Byte save_state) { public void setSave_state(Integer save_state) {
this.save_state = save_state; this.save_state = save_state;
} }
public Byte getSave_state() { public Integer getSave_state() {
return save_state; return save_state;
} }
......
...@@ -5,8 +5,8 @@ import java.math.BigDecimal; ...@@ -5,8 +5,8 @@ import java.math.BigDecimal;
import javax.persistence.Entity; import javax.persistence.Entity;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="fc_view_review_total") @Entity(name="fc_view_review_total")
......
...@@ -3,8 +3,8 @@ package com.egolm.film.bean; ...@@ -3,8 +3,8 @@ package com.egolm.film.bean;
import javax.persistence.Entity; import javax.persistence.Entity;
/** /**
* @author Quxl * @author 曲欣亮
* @since 2018-09-29 * @since 2018-10-10
* @version v-1.0 * @version v-1.0
*/ */
@Entity(name="test") @Entity(name="test")
......
...@@ -4,8 +4,12 @@ import com.egolm.film.bean.Fc_member; ...@@ -4,8 +4,12 @@ import com.egolm.film.bean.Fc_member;
public interface MemberService { public interface MemberService {
String encodePassword(String password);
Fc_member getMemberByEmail(String email); Fc_member getMemberByEmail(String email);
void changePassword(String id, String newPassword); void changePassword(String id, String newPassword);
void saveMember(Fc_member member);
} }
...@@ -18,8 +18,8 @@ public class MemberServiceImpl implements MemberService { ...@@ -18,8 +18,8 @@ public class MemberServiceImpl implements MemberService {
@Override @Override
public void changePassword(String id, String newPassword) { public void changePassword(String id, String newPassword) {
String sql = "update fc_member set password = ? where id = ?"; String sql = "update fc_member set password = ? where id = ?";
String md5Pwd = StringUtil.toMD5HexString(newPassword);
jdbcTemplate.executeUpdate(sql, md5Pwd, id); jdbcTemplate.executeUpdate(sql, this.encodePassword(newPassword), id);
} }
@Override @Override
...@@ -28,4 +28,14 @@ public class MemberServiceImpl implements MemberService { ...@@ -28,4 +28,14 @@ public class MemberServiceImpl implements MemberService {
return jdbcTemplate.queryForBean(sql, Fc_member.class, email); return jdbcTemplate.queryForBean(sql, Fc_member.class, email);
} }
@Override
public String encodePassword(String password) {
return StringUtil.toMD5HexString(password);
}
@Override
public void saveMember(Fc_member member) {
jdbcTemplate.save(member);
}
} }
package com.egolm.film.config;
import java.sql.SQLException;
import com.egolm.common.jdbc.dialect.MysqlTo;
public class DBUtil {
public static void main(String[] args) throws SQLException {
new MysqlTo("D:\\eclipse-workspace\\egolm.com\\002\\siff-film-api\\src\\main\\java", "com.egolm.film.bean", "曲欣亮", "10.10.0.111", "film_dev", "root", "egolm#2018").execute();
}
}
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