Commit 75da17c5 by 284718418@qq.com

添加有病史具体说明字段

parent a504e4c2
...@@ -147,11 +147,16 @@ public class ZpglRcxx extends Model<ZpglRcxx> { ...@@ -147,11 +147,16 @@ public class ZpglRcxx extends Model<ZpglRcxx> {
@ApiModelProperty(value = "驾照 1:A照 2:B照 3:C照") @ApiModelProperty(value = "驾照 1:A照 2:B照 3:C照")
private Integer drivingLicense; private Integer drivingLicense;
/** /**
* 病史 :0无,1有 * 病史 :0无,1有
*/ */
@ApiModelProperty(value = "病史 :0无,1有") @ApiModelProperty(value = "病史 :0无,1有")
private Integer medicalHistory; private Integer medicalHistory;
/** /**
* 病史1有:具体说明
*/
@ApiModelProperty(value = "具体说明")
private Integer medicalDetail;
/**
* 待遇要求(税前)单位元/月 * 待遇要求(税前)单位元/月
*/ */
@ApiModelProperty(value = "待遇要求(税前)单位元/月") @ApiModelProperty(value = "待遇要求(税前)单位元/月")
...@@ -257,6 +262,11 @@ public class ZpglRcxx extends Model<ZpglRcxx> { ...@@ -257,6 +262,11 @@ public class ZpglRcxx extends Model<ZpglRcxx> {
@ApiModelProperty(value = "面试时间") @ApiModelProperty(value = "面试时间")
private Date interviewTime; private Date interviewTime;
/** /**
* 面试方式 1:现场面试 2:电话面试 3:视屏面试
*/
@ApiModelProperty(value = "面试方式 1:现场面试 2:电话面试 3:视屏面试")
private Integer interviewWay;
/**
* 通知方式 1:全部 2:短信 3:邮件 4.微信公众号 * 通知方式 1:全部 2:短信 3:邮件 4.微信公众号
*/ */
@ApiModelProperty(value = "通知方式 1:全部 2:短信 3:邮件 4.微信公众号") @ApiModelProperty(value = "通知方式 1:全部 2:短信 3:邮件 4.微信公众号")
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
<result property="language" column="language"/> <result property="language" column="language"/>
<result property="drivingLicense" column="driving_license"/> <result property="drivingLicense" column="driving_license"/>
<result property="medicalHistory" column="medical_history"/> <result property="medicalHistory" column="medical_history"/>
<result property="medicalDetail" column="medical_detail"/>
<result property="salary" column="salary"/> <result property="salary" column="salary"/>
<result property="workStatus" column="work_status"/> <result property="workStatus" column="work_status"/>
<result property="workTimer" column="work_timer"/> <result property="workTimer" column="work_timer"/>
......
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