Commit 908c7e7f by hongzhong

0000945: 经纪人维护页面添加字段,当经纪人电子报聘通过审核后,系统自动同步报聘信息

parent 96a768f9
...@@ -495,6 +495,10 @@ public class AgmsHiringServiceImpl implements AgmsHiringService { ...@@ -495,6 +495,10 @@ public class AgmsHiringServiceImpl implements AgmsHiringService {
practitioner.setIntroducerId(membership.getIntroducerPractitionerId()); practitioner.setIntroducerId(membership.getIntroducerPractitionerId());
practitioner.setGender(basicInfo.getGender()); practitioner.setGender(basicInfo.getGender());
practitioner.setHiringBasicInfoId(hiringBasicInfoId); practitioner.setHiringBasicInfoId(hiringBasicInfoId);
//0000945: 经纪人维护页面添加字段,当经纪人电子报聘通过审核后,系统自动同步报聘信息
practitioner.setAccountBank(basicInfo.getBankAccountOpening());
practitioner.setBankCardNo(basicInfo.getBankAccountId());
practitioner.setEmail(basicInfo.getEmail());
aclPractitionerDalService.save(practitioner); aclPractitionerDalService.save(practitioner);
AclPractitionerSetting setting = new AclPractitionerSetting(); AclPractitionerSetting setting = new AclPractitionerSetting();
......
...@@ -236,4 +236,17 @@ public class AclPractitioner { ...@@ -236,4 +236,17 @@ public class AclPractitioner {
* 详细地址 * 详细地址
*/ */
private String detailAddress; private String detailAddress;
}
\ No newline at end of file /**
* 开户银行
*/
private String accountBank;
/**
* 银行卡号
*/
private String bankCardNo;
/**
* 电子邮件
*/
private String email;
}
...@@ -90,7 +90,7 @@ ...@@ -90,7 +90,7 @@
education_level, graduated_university, mentor_id, education_level, graduated_university, mentor_id,
introducer_id, gender, contract_oss_path, introducer_id, gender, contract_oss_path,
hiring_basic_info_id, can_login_dyd, can_see_salary_list, hiring_basic_info_id, can_login_dyd, can_see_salary_list,
detail_address detail_address,account_bank,bank_card_no,email
) )
values (#{insurerId,jdbcType=BIGINT}, #{insurerBranchId,jdbcType=BIGINT}, #{deptId,jdbcType=BIGINT}, values (#{insurerId,jdbcType=BIGINT}, #{insurerBranchId,jdbcType=BIGINT}, #{deptId,jdbcType=BIGINT},
#{subordinateSystemId,jdbcType=BIGINT}, #{practitionerCode,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{subordinateSystemId,jdbcType=BIGINT}, #{practitionerCode,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
...@@ -107,7 +107,7 @@ ...@@ -107,7 +107,7 @@
#{educationLevel,jdbcType=VARCHAR}, #{graduatedUniversity,jdbcType=VARCHAR}, #{mentorId,jdbcType=BIGINT}, #{educationLevel,jdbcType=VARCHAR}, #{graduatedUniversity,jdbcType=VARCHAR}, #{mentorId,jdbcType=BIGINT},
#{introducerId,jdbcType=BIGINT}, #{gender,jdbcType=INTEGER}, #{contractOssPath,jdbcType=VARCHAR}, #{introducerId,jdbcType=BIGINT}, #{gender,jdbcType=INTEGER}, #{contractOssPath,jdbcType=VARCHAR},
#{hiringBasicInfoId,jdbcType=BIGINT}, #{canLoginDyd,jdbcType=BIGINT}, #{canSeeSalaryList,jdbcType=BIGINT}, #{hiringBasicInfoId,jdbcType=BIGINT}, #{canLoginDyd,jdbcType=BIGINT}, #{canSeeSalaryList,jdbcType=BIGINT},
#{detailAddress} #{detailAddress},#{account_bank,jdbcType=VARCHAR}, #{bank_card_no,jdbcType=VARCHAR}, #{email,jdbcType=VARCHAR}
) )
</insert> </insert>
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.yd.dal.entity.customer.AclPractitioner" useGeneratedKeys="true"> <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.yd.dal.entity.customer.AclPractitioner" useGeneratedKeys="true">
......
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