Commit b78d089d by jianan Committed by Mahjong

电子报聘-人员基本信息增加字段,政治面貌

parent 819f6998
...@@ -2,8 +2,6 @@ package com.yd.api.practitioner.vo.hiring; ...@@ -2,8 +2,6 @@ package com.yd.api.practitioner.vo.hiring;
import lombok.Data; import lombok.Data;
import java.util.Date;
@Data @Data
public class SaveBasicInfoRequestVO { public class SaveBasicInfoRequestVO {
...@@ -70,6 +68,11 @@ public class SaveBasicInfoRequestVO { ...@@ -70,6 +68,11 @@ public class SaveBasicInfoRequestVO {
private String cityName; private String cityName;
/** /**
* 政治面貌
*/
private String politicalOutlook;
/**
* 居住地址 * 居住地址
*/ */
private String residentAddress; private String residentAddress;
......
...@@ -59,6 +59,11 @@ public class PractitionerHiringBasicInfo { ...@@ -59,6 +59,11 @@ public class PractitionerHiringBasicInfo {
private String cityName; private String cityName;
/** /**
* 政治面貌
*/
private String politicalOutlook;
/**
* 居住地址 * 居住地址
*/ */
private String residentAddress; private String residentAddress;
......
...@@ -85,6 +85,11 @@ public class AclPractitionerHiringBasicInfo { ...@@ -85,6 +85,11 @@ public class AclPractitionerHiringBasicInfo {
private String cityName; private String cityName;
/** /**
* 政治面貌
*/
private String politicalOutlook;
/**
* 居住地址 * 居住地址
*/ */
private String residentAddress; private String residentAddress;
......
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
<result column="practitionerBirthdate" jdbcType="VARCHAR" property="practitionerBirthdate"/> <result column="practitionerBirthdate" jdbcType="VARCHAR" property="practitionerBirthdate"/>
<result column="provinceName" jdbcType="VARCHAR" property="provinceName"/> <result column="provinceName" jdbcType="VARCHAR" property="provinceName"/>
<result column="cityName" jdbcType="VARCHAR" property="cityName"/> <result column="cityName" jdbcType="VARCHAR" property="cityName"/>
<result column="political_outlook" jdbcType="VARCHAR" property="politicalOutlook"/>
<result column="residentAddress" jdbcType="VARCHAR" property="residentAddress"/> <result column="residentAddress" jdbcType="VARCHAR" property="residentAddress"/>
<result column="wechatId" jdbcType="VARCHAR" property="wechatId"/> <result column="wechatId" jdbcType="VARCHAR" property="wechatId"/>
<result column="wechatQRcodeOssPath" jdbcType="VARCHAR" property="wechatQRcodeOssPath"/> <result column="wechatQRcodeOssPath" jdbcType="VARCHAR" property="wechatQRcodeOssPath"/>
...@@ -40,6 +41,7 @@ ...@@ -40,6 +41,7 @@
DATE_FORMAT(b.practitioner_birthdate, '%Y%m%d') practitionerBirthdate, DATE_FORMAT(b.practitioner_birthdate, '%Y%m%d') practitionerBirthdate,
b.province_name provinceName, b.province_name provinceName,
b.city_name cityName, b.city_name cityName,
b.political_outlook politicalOutlook,
b.resident_address residentAddress, b.resident_address residentAddress,
b.wechat_id wechatId, b.wechat_id wechatId,
b.wechat_QRcode_oss_path wechatQRcodeOssPath, b.wechat_QRcode_oss_path wechatQRcodeOssPath,
......
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
<result column="province_name" jdbcType="VARCHAR" property="provinceName" /> <result column="province_name" jdbcType="VARCHAR" property="provinceName" />
<result column="city_id" jdbcType="BIGINT" property="cityId" /> <result column="city_id" jdbcType="BIGINT" property="cityId" />
<result column="city_name" jdbcType="VARCHAR" property="cityName" /> <result column="city_name" jdbcType="VARCHAR" property="cityName" />
<result column="political_outlook" jdbcType="VARCHAR" property="politicalOutlook" />
<result column="resident_address" jdbcType="LONGVARCHAR" property="residentAddress" /> <result column="resident_address" jdbcType="LONGVARCHAR" property="residentAddress" />
<result column="wechat_id" jdbcType="VARCHAR" property="wechatId" /> <result column="wechat_id" jdbcType="VARCHAR" property="wechatId" />
<result column="wechat_QRcode_oss_path" jdbcType="VARCHAR" property="wechatQRcodeOssPath" /> <result column="wechat_QRcode_oss_path" jdbcType="VARCHAR" property="wechatQRcodeOssPath" />
...@@ -44,7 +45,7 @@ ...@@ -44,7 +45,7 @@
<!--@mbg.generated--> <!--@mbg.generated-->
id, practitioner_potential_id, invitee_practitioner_id, `name`, mobile_no, id_type_id, id, practitioner_potential_id, invitee_practitioner_id, `name`, mobile_no, id_type_id,
id_type, id_no, gender, practitioner_birthdate, province_id, province_name, city_id, id_type, id_no, gender, practitioner_birthdate, province_id, province_name, city_id,
city_name, resident_address, wechat_id, wechat_QRcode_oss_path, email, personer_picture_oss_path, payroll_oss_path, id_front_page_oss_path, city_name, political_outlook, resident_address, wechat_id, wechat_QRcode_oss_path, email, personer_picture_oss_path, payroll_oss_path, id_front_page_oss_path,
id_back_page_oss_path, last_graduate_code, last_graduate_grade, last_graduate_school, last_graduate_certification_oss_path, id_back_page_oss_path, last_graduate_code, last_graduate_grade, last_graduate_school, last_graduate_certification_oss_path,
bank_account_opening, bank_account_id, personal_sign_oss_path, is_active, created_at, bank_account_opening, bank_account_id, personal_sign_oss_path, is_active, created_at,
created_by, updated_at, updated_by, approve_status created_by, updated_at, updated_by, approve_status
...@@ -319,6 +320,9 @@ ...@@ -319,6 +320,9 @@
<if test="cityName != null"> <if test="cityName != null">
city_name = #{cityName,jdbcType=VARCHAR}, city_name = #{cityName,jdbcType=VARCHAR},
</if> </if>
<if test="politicalOutlook != null">
political_outlook = #{politicalOutlook,jdbcType=VARCHAR},
</if>
<if test="residentAddress != null"> <if test="residentAddress != null">
resident_address = #{residentAddress,jdbcType=LONGVARCHAR}, resident_address = #{residentAddress,jdbcType=LONGVARCHAR},
</if> </if>
......
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