Commit dfdc1a56 authored by Quxl's avatar Quxl

x

parent 93f1d6a2
...@@ -20,8 +20,8 @@ public class Fc_member_film_base_model implements Serializable{ ...@@ -20,8 +20,8 @@ public class Fc_member_film_base_model implements Serializable{
@ApiModelProperty("影片编号") Long member_film_id; @ApiModelProperty("影片编号") Long member_film_id;
@ApiModelProperty("影片类型")String film_type_name; @ApiModelProperty("影片类型")String film_type_name;
@ApiModelProperty("影片类型扩展分类")String film_type_name_short; @ApiModelProperty("影片类型扩展分类")String film_type_name_short;
@ApiModelProperty("报名性质")Integer[] enroll_type_name; @ApiModelProperty("报名性质")String enroll_type_name;
@ApiModelProperty("报名性质扩展分类")Integer[] enroll_type_name_other; @ApiModelProperty("报名性质扩展分类")String enroll_type_name_other;
@ApiModelProperty("影片原名")String original_name; @ApiModelProperty("影片原名")String original_name;
@ApiModelProperty("中文名称")String cn_name; @ApiModelProperty("中文名称")String cn_name;
@ApiModelProperty("英文名称")String en_name; @ApiModelProperty("英文名称")String en_name;
...@@ -29,7 +29,7 @@ public class Fc_member_film_base_model implements Serializable{ ...@@ -29,7 +29,7 @@ public class Fc_member_film_base_model implements Serializable{
@ApiModelProperty("制片国家")String film_country; @ApiModelProperty("制片国家")String film_country;
@ApiModelProperty("对白语言")String dialogue_lang; @ApiModelProperty("对白语言")String dialogue_lang;
@ApiModelProperty("字幕语言")String subtitle_lang; @ApiModelProperty("字幕语言")String subtitle_lang;
@ApiModelProperty("合拍国家")String[] co_production_country; @ApiModelProperty("合拍国家")String co_production_country;
@ApiModelProperty("总时长")String film_total_time; @ApiModelProperty("总时长")String film_total_time;
@ApiModelProperty("完成时间")String completion_date; @ApiModelProperty("完成时间")String completion_date;
@ApiModelProperty("放映时间")String show_date; @ApiModelProperty("放映时间")String show_date;
...@@ -67,16 +67,16 @@ public class Fc_member_film_base_model implements Serializable{ ...@@ -67,16 +67,16 @@ public class Fc_member_film_base_model implements Serializable{
public void setFilm_type_name_short(String film_type_name_short) { public void setFilm_type_name_short(String film_type_name_short) {
this.film_type_name_short = film_type_name_short; this.film_type_name_short = film_type_name_short;
} }
public Integer[] getEnroll_type_name() { public String getEnroll_type_name() {
return enroll_type_name; return enroll_type_name;
} }
public void setEnroll_type_name(Integer[] enroll_type_name) { public void setEnroll_type_name(String enroll_type_name) {
this.enroll_type_name = enroll_type_name; this.enroll_type_name = enroll_type_name;
} }
public Integer[] getEnroll_type_name_other() { public String getEnroll_type_name_other() {
return enroll_type_name_other; return enroll_type_name_other;
} }
public void setEnroll_type_name_other(Integer[] enroll_type_name_other) { public void setEnroll_type_name_other(String enroll_type_name_other) {
this.enroll_type_name_other = enroll_type_name_other; this.enroll_type_name_other = enroll_type_name_other;
} }
public String getOriginal_name() { public String getOriginal_name() {
...@@ -121,10 +121,10 @@ public class Fc_member_film_base_model implements Serializable{ ...@@ -121,10 +121,10 @@ public class Fc_member_film_base_model implements Serializable{
public void setSubtitle_lang(String subtitle_lang) { public void setSubtitle_lang(String subtitle_lang) {
this.subtitle_lang = subtitle_lang; this.subtitle_lang = subtitle_lang;
} }
public String[] getCo_production_country() { public String getCo_production_country() {
return co_production_country; return co_production_country;
} }
public void setCo_production_country(String[] co_production_country) { public void setCo_production_country(String co_production_country) {
this.co_production_country = co_production_country; this.co_production_country = co_production_country;
} }
public String getFilm_total_time() { public String getFilm_total_time() {
......
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