Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
0736ea6a
Commit
0736ea6a
authored
Jun 18, 2025
by
chenyuxi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 瓜子档案表里新增“地区ID”相关字段
parent
1bb15744
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
1 deletion
+49
-1
TGzEmpInfo.java
...m/yifu/cloud/plus/v1/yifu/archives/entity/TGzEmpInfo.java
+30
-0
TGzEmpInfoMapper.xml
...chives-biz/src/main/resources/mapper/TGzEmpInfoMapper.xml
+19
-1
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/entity/TGzEmpInfo.java
View file @
0736ea6a
...
@@ -162,6 +162,10 @@ public class TGzEmpInfo extends BaseEntity {
...
@@ -162,6 +162,10 @@ public class TGzEmpInfo extends BaseEntity {
@ExcelProperty
(
"籍贯"
)
@ExcelProperty
(
"籍贯"
)
@Schema
(
description
=
"籍贯"
)
@Schema
(
description
=
"籍贯"
)
private
String
nativePlace
;
private
String
nativePlace
;
@Schema
(
description
=
"籍贯地区ID"
)
private
Integer
nativePlaceAreaId
;
/**
/**
* 民族
* 民族
*/
*/
...
@@ -295,6 +299,15 @@ public class TGzEmpInfo extends BaseEntity {
...
@@ -295,6 +299,15 @@ public class TGzEmpInfo extends BaseEntity {
@ExcelProperty
(
"家庭住址-所在区编码"
)
@ExcelProperty
(
"家庭住址-所在区编码"
)
@Schema
(
description
=
"家庭住址-所在区编码"
)
@Schema
(
description
=
"家庭住址-所在区编码"
)
private
String
countyId
;
private
String
countyId
;
@Schema
(
description
=
"家庭住址-所在省地区ID"
)
private
Integer
stateAreaId
;
@Schema
(
description
=
"家庭住址-所在市地区ID"
)
private
Integer
cityAreaId
;
@Schema
(
description
=
"家庭住址-所在区地区ID"
)
private
Integer
countyAreaId
;
/**
/**
* 家庭住址-详细地址
* 家庭住址-详细地址
*/
*/
...
@@ -441,6 +454,16 @@ public class TGzEmpInfo extends BaseEntity {
...
@@ -441,6 +454,16 @@ public class TGzEmpInfo extends BaseEntity {
@ExcelProperty
(
"户口-所在区编码"
)
@ExcelProperty
(
"户口-所在区编码"
)
@Schema
(
description
=
"户口-所在区编码"
)
@Schema
(
description
=
"户口-所在区编码"
)
private
String
hukouCounty
;
private
String
hukouCounty
;
@Schema
(
description
=
"户口-所在省地区ID"
)
private
Integer
hukouProvinceAreaId
;
@Schema
(
description
=
"户口-所在市地区ID"
)
private
Integer
hukouCityAreaId
;
@Schema
(
description
=
"户口-所在区地区ID"
)
private
Integer
hukouCountyAreaId
;
/**
/**
* 户口地址
* 户口地址
*/
*/
...
@@ -513,6 +536,13 @@ public class TGzEmpInfo extends BaseEntity {
...
@@ -513,6 +536,13 @@ public class TGzEmpInfo extends BaseEntity {
@ExcelProperty
(
"开户行所在市"
)
@ExcelProperty
(
"开户行所在市"
)
@Schema
(
description
=
"开户行所在市"
)
@Schema
(
description
=
"开户行所在市"
)
private
String
accountCity
;
private
String
accountCity
;
@Schema
(
description
=
"开户行所在省地区ID"
)
private
Integer
accountProvinceAreaId
;
@Schema
(
description
=
"开户行所在市地区ID"
)
private
Integer
accountCityAreaId
;
/**
/**
* 账号ID
* 账号ID
*/
*/
...
...
yifu-archives/yifu-archives-biz/src/main/resources/mapper/TGzEmpInfoMapper.xml
View file @
0736ea6a
...
@@ -91,6 +91,15 @@
...
@@ -91,6 +91,15 @@
<result
property=
"accountCity"
column=
"account_city"
/>
<result
property=
"accountCity"
column=
"account_city"
/>
<result
property=
"accountEcId"
column=
"account_ec_id"
/>
<result
property=
"accountEcId"
column=
"account_ec_id"
/>
<result
property=
"accountName"
column=
"account_name"
/>
<result
property=
"accountName"
column=
"account_name"
/>
<result
property=
"nativePlaceAreaId"
column=
"native_place_area_id"
/>
<result
property=
"stateAreaId"
column=
"state_area_id"
/>
<result
property=
"cityAreaId"
column=
"city_area_id"
/>
<result
property=
"countyAreaId"
column=
"county_area_id"
/>
<result
property=
"hukouProvinceAreaId"
column=
"hukou_province_area_id"
/>
<result
property=
"hukouCityAreaId"
column=
"hukou_city_area_id"
/>
<result
property=
"hukouCountyAreaId"
column=
"hukou_county_area_id"
/>
<result
property=
"accountProvinceAreaId"
column=
"account_province_area_id"
/>
<result
property=
"accountCityAreaId"
column=
"account_city_area_id"
/>
</resultMap>
</resultMap>
<sql
id=
"Base_Column_List"
>
<sql
id=
"Base_Column_List"
>
a.id,
a.id,
...
@@ -159,7 +168,16 @@
...
@@ -159,7 +168,16 @@
a.account_province,
a.account_province,
a.account_city,
a.account_city,
a.account_ec_id,
a.account_ec_id,
a.account_name
a.account_name,
a.native_place_area_id,
a.state_area_id,
a.city_area_id,
a.county_area_id,
a.hukou_province_area_id,
a.hukou_city_area_id,
a.hukou_county_area_id,
a.account_province_area_id,
a.account_city_area_id
</sql>
</sql>
<sql
id=
"tGzEmpInfo_where"
>
<sql
id=
"tGzEmpInfo_where"
>
<if
test=
"tGzEmpInfo != null"
>
<if
test=
"tGzEmpInfo != null"
>
...
...
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