Commit 908c7e7f by hongzhong

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

parent 96a768f9
......@@ -495,6 +495,10 @@ public class AgmsHiringServiceImpl implements AgmsHiringService {
practitioner.setIntroducerId(membership.getIntroducerPractitionerId());
practitioner.setGender(basicInfo.getGender());
practitioner.setHiringBasicInfoId(hiringBasicInfoId);
//0000945: 经纪人维护页面添加字段,当经纪人电子报聘通过审核后,系统自动同步报聘信息
practitioner.setAccountBank(basicInfo.getBankAccountOpening());
practitioner.setBankCardNo(basicInfo.getBankAccountId());
practitioner.setEmail(basicInfo.getEmail());
aclPractitionerDalService.save(practitioner);
AclPractitionerSetting setting = new AclPractitionerSetting();
......
......@@ -236,4 +236,17 @@ public class AclPractitioner {
* 详细地址
*/
private String detailAddress;
/**
* 开户银行
*/
private String accountBank;
/**
* 银行卡号
*/
private String bankCardNo;
/**
* 电子邮件
*/
private String email;
}
......@@ -90,7 +90,7 @@
education_level, graduated_university, mentor_id,
introducer_id, gender, contract_oss_path,
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},
#{subordinateSystemId,jdbcType=BIGINT}, #{practitionerCode,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
......@@ -107,7 +107,7 @@
#{educationLevel,jdbcType=VARCHAR}, #{graduatedUniversity,jdbcType=VARCHAR}, #{mentorId,jdbcType=BIGINT},
#{introducerId,jdbcType=BIGINT}, #{gender,jdbcType=INTEGER}, #{contractOssPath,jdbcType=VARCHAR},
#{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 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