Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-backend
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
AutogeneralShanghai
yd-backend
Commits
908c7e7f
Commit
908c7e7f
authored
Nov 09, 2021
by
hongzhong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0000945: 经纪人维护页面添加字段,当经纪人电子报聘通过审核后,系统自动同步报聘信息
parent
96a768f9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
4 deletions
+20
-4
yd-api/src/main/java/com/yd/api/agms/service/impl/AgmsHiringServiceImpl.java
+4
-0
yd-api/src/main/java/com/yd/dal/entity/customer/AclPractitioner.java
+14
-2
yd-api/src/main/resources/mapper/customer/AclPractitionerMapper.xml
+2
-2
No files found.
yd-api/src/main/java/com/yd/api/agms/service/impl/AgmsHiringServiceImpl.java
View file @
908c7e7f
...
...
@@ -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
();
...
...
yd-api/src/main/java/com/yd/dal/entity/customer/AclPractitioner.java
View file @
908c7e7f
...
...
@@ -236,4 +236,17 @@ public class AclPractitioner {
* 详细地址
*/
private
String
detailAddress
;
}
\ No newline at end of file
/**
* 开户银行
*/
private
String
accountBank
;
/**
* 银行卡号
*/
private
String
bankCardNo
;
/**
* 电子邮件
*/
private
String
email
;
}
yd-api/src/main/resources/mapper/customer/AclPractitionerMapper.xml
View file @
908c7e7f
...
...
@@ -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"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment