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
b78d089d
Commit
b78d089d
authored
Feb 22, 2023
by
jianan
Committed by
Mahjong
Mar 09, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
电子报聘-人员基本信息增加字段,政治面貌
parent
819f6998
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
3 deletions
+22
-3
yd-api/src/main/java/com/yd/api/practitioner/vo/hiring/SaveBasicInfoRequestVO.java
+5
-2
yd-api/src/main/java/com/yd/dal/entity/agms/hiring/PractitionerHiringBasicInfo.java
+5
-0
yd-api/src/main/java/com/yd/dal/entity/customer/AclPractitionerHiringBasicInfo.java
+5
-0
yd-api/src/main/resources/mapper/agms/AgmsHiringMapper.xml
+2
-0
yd-api/src/main/resources/mapper/customer/AclPractitionerHiringBasicInfoMapper.xml
+5
-1
No files found.
yd-api/src/main/java/com/yd/api/practitioner/vo/hiring/SaveBasicInfoRequestVO.java
View file @
b78d089d
...
...
@@ -2,8 +2,6 @@ package com.yd.api.practitioner.vo.hiring;
import
lombok.Data
;
import
java.util.Date
;
@Data
public
class
SaveBasicInfoRequestVO
{
...
...
@@ -70,6 +68,11 @@ public class SaveBasicInfoRequestVO {
private
String
cityName
;
/**
* 政治面貌
*/
private
String
politicalOutlook
;
/**
* 居住地址
*/
private
String
residentAddress
;
...
...
yd-api/src/main/java/com/yd/dal/entity/agms/hiring/PractitionerHiringBasicInfo.java
View file @
b78d089d
...
...
@@ -59,6 +59,11 @@ public class PractitionerHiringBasicInfo {
private
String
cityName
;
/**
* 政治面貌
*/
private
String
politicalOutlook
;
/**
* 居住地址
*/
private
String
residentAddress
;
...
...
yd-api/src/main/java/com/yd/dal/entity/customer/AclPractitionerHiringBasicInfo.java
View file @
b78d089d
...
...
@@ -85,6 +85,11 @@ public class AclPractitionerHiringBasicInfo {
private
String
cityName
;
/**
* 政治面貌
*/
private
String
politicalOutlook
;
/**
* 居住地址
*/
private
String
residentAddress
;
...
...
yd-api/src/main/resources/mapper/agms/AgmsHiringMapper.xml
View file @
b78d089d
...
...
@@ -12,6 +12,7 @@
<result
column=
"practitionerBirthdate"
jdbcType=
"VARCHAR"
property=
"practitionerBirthdate"
/>
<result
column=
"provinceName"
jdbcType=
"VARCHAR"
property=
"provinceName"
/>
<result
column=
"cityName"
jdbcType=
"VARCHAR"
property=
"cityName"
/>
<result
column=
"political_outlook"
jdbcType=
"VARCHAR"
property=
"politicalOutlook"
/>
<result
column=
"residentAddress"
jdbcType=
"VARCHAR"
property=
"residentAddress"
/>
<result
column=
"wechatId"
jdbcType=
"VARCHAR"
property=
"wechatId"
/>
<result
column=
"wechatQRcodeOssPath"
jdbcType=
"VARCHAR"
property=
"wechatQRcodeOssPath"
/>
...
...
@@ -40,6 +41,7 @@
DATE_FORMAT(b.practitioner_birthdate, '%Y%m%d') practitionerBirthdate,
b.province_name provinceName,
b.city_name cityName,
b.political_outlook politicalOutlook,
b.resident_address residentAddress,
b.wechat_id wechatId,
b.wechat_QRcode_oss_path wechatQRcodeOssPath,
...
...
yd-api/src/main/resources/mapper/customer/AclPractitionerHiringBasicInfoMapper.xml
View file @
b78d089d
...
...
@@ -19,6 +19,7 @@
<result
column=
"province_name"
jdbcType=
"VARCHAR"
property=
"provinceName"
/>
<result
column=
"city_id"
jdbcType=
"BIGINT"
property=
"cityId"
/>
<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=
"wechat_id"
jdbcType=
"VARCHAR"
property=
"wechatId"
/>
<result
column=
"wechat_QRcode_oss_path"
jdbcType=
"VARCHAR"
property=
"wechatQRcodeOssPath"
/>
...
...
@@ -44,7 +45,7 @@
<!--@mbg.generated-->
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,
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,
bank_account_opening, bank_account_id, personal_sign_oss_path, is_active, created_at,
created_by, updated_at, updated_by, approve_status
...
...
@@ -319,6 +320,9 @@
<if
test=
"cityName != null"
>
city_name = #{cityName,jdbcType=VARCHAR},
</if>
<if
test=
"politicalOutlook != null"
>
political_outlook = #{politicalOutlook,jdbcType=VARCHAR},
</if>
<if
test=
"residentAddress != null"
>
resident_address = #{residentAddress,jdbcType=LONGVARCHAR},
</if>
...
...
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