Commit 451e7594 authored by Quxl's avatar Quxl

增加快递单号属性

parent 6227d887
...@@ -227,6 +227,11 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -227,6 +227,11 @@ public class Fc_member_film implements java.io.Serializable {
*/ */
private String enroll_type_name_other; private String enroll_type_name_other;
/**
* 快递单号
*/
private String film_express_no;
/** /**
* 样片url * 样片url
*/ */
...@@ -325,6 +330,7 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -325,6 +330,7 @@ public class Fc_member_film implements java.io.Serializable {
* @param film_apply_mobile 影片申请人手机 * @param film_apply_mobile 影片申请人手机
* @param film_apply_country 影片申请国籍 * @param film_apply_country 影片申请国籍
* @param enroll_type_name_other 报名性质 * @param enroll_type_name_other 报名性质
* @param film_express_no 快递单号
* @param film_format_url 样片url * @param film_format_url 样片url
* @param film_format_passw 样片url密码 * @param film_format_passw 样片url密码
* @param film_format_other 样片url其他 * @param film_format_other 样片url其他
...@@ -335,7 +341,7 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -335,7 +341,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, 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) { 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_express_no, 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;
...@@ -379,6 +385,7 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -379,6 +385,7 @@ public class Fc_member_film implements java.io.Serializable {
this.film_apply_mobile = film_apply_mobile; this.film_apply_mobile = film_apply_mobile;
this.film_apply_country = film_apply_country; this.film_apply_country = film_apply_country;
this.enroll_type_name_other = enroll_type_name_other; this.enroll_type_name_other = enroll_type_name_other;
this.film_express_no = film_express_no;
this.film_format_url = film_format_url; this.film_format_url = film_format_url;
this.film_format_passw = film_format_passw; this.film_format_passw = film_format_passw;
this.film_format_other = film_format_other; this.film_format_other = film_format_other;
...@@ -734,6 +741,14 @@ public class Fc_member_film implements java.io.Serializable { ...@@ -734,6 +741,14 @@ public class Fc_member_film implements java.io.Serializable {
return enroll_type_name_other; return enroll_type_name_other;
} }
public void setFilm_express_no(String film_express_no) {
this.film_express_no = film_express_no;
}
public String getFilm_express_no() {
return film_express_no;
}
public void setFilm_format_url(String film_format_url) { public void setFilm_format_url(String film_format_url) {
this.film_format_url = film_format_url; this.film_format_url = film_format_url;
} }
......
...@@ -7,7 +7,7 @@ import com.egolm.common.jdbc.dialect.MysqlTo; ...@@ -7,7 +7,7 @@ import com.egolm.common.jdbc.dialect.MysqlTo;
public class DBUtil { public class DBUtil {
public static void main(String[] args) throws SQLException { public static void main(String[] args) throws SQLException {
MysqlTo mysqlTo = 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"); MysqlTo mysqlTo = new MysqlTo("D:\\eclipse-workspace\\egolm.com\\default\\siff-film-api\\src\\main\\java", "com.egolm.film.bean", "曲欣亮", "10.10.0.111", "film_critic_2018", "root", "egolm#2018");
mysqlTo.execute("fc_member_film"); mysqlTo.execute("fc_member_film");
} }
......
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