Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
项目统一框架
amos-boot-biz
Commits
82edbfeb
Commit
82edbfeb
authored
Jul 22, 2025
by
李成龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改人员详情页缺少子类型/学历/专业/职称字段。
parent
c14de0f5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletion
+19
-1
TzsUserInfoVo.java
...oin/amos/boot/module/statistics/api/vo/TzsUserInfoVo.java
+16
-1
UserBizByTCMServiceImpl.java
...e/statistcs/biz/service/impl/UserBizByTCMServiceImpl.java
+3
-0
No files found.
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-api/src/main/java/com/yeejoin/amos/boot/module/statistics/api/vo/TzsUserInfoVo.java
View file @
82edbfeb
...
...
@@ -67,12 +67,21 @@ public class TzsUserInfoVo {
*/
@TableField
(
"education"
)
private
String
education
;
/**
* 学历
*/
@TableField
(
"education_required"
)
private
String
education_required
;
/**
* 专业
*/
@TableField
(
"speciality"
)
private
String
speciality
;
/**
* 专业
*/
@TableField
(
"speciality_required"
)
private
String
speciality_required
;
/**
* 邮箱
...
...
@@ -156,7 +165,13 @@ public class TzsUserInfoVo {
/**
* 职称
*/
@TableField
(
"job_title"
)
private
String
jobTitle
;
/**
* 职称
*/
@TableField
(
"job_title_required"
)
private
String
jobTitle_required
;
@ApiModelProperty
(
value
=
"人员类型名称"
)
private
String
postName
;
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/java/com/yeejoin/amos/boot/module/statistcs/biz/service/impl/UserBizByTCMServiceImpl.java
View file @
82edbfeb
...
...
@@ -85,6 +85,9 @@ public class UserBizByTCMServiceImpl {
tzsUserInfoVo
.
setAppointDoc
(
ObjectUtils
.
isEmpty
(
tzsUserInfo
.
getAppointDoc
())
?
null
:
JSON
.
parseArray
(
tzsUserInfo
.
getAppointDoc
()));
tzsUserInfoVo
.
setOtherAccessories
(
ObjectUtils
.
isEmpty
(
tzsUserInfo
.
getOtherAccessories
())
?
null
:
JSON
.
parseArray
(
tzsUserInfo
.
getOtherAccessories
()));
tzsUserInfoVo
.
setBirthday
(
tzsUserInfo
.
getBirthday
()
!=
null
?
DateUtils
.
longStrDate
(
tzsUserInfo
.
getBirthday
()):
null
);
tzsUserInfoVo
.
setSpeciality_required
(
tzsUserInfo
.
getSpeciality
());
tzsUserInfoVo
.
setEducation_required
(
tzsUserInfo
.
getEducation
());
tzsUserInfoVo
.
setJobTitle_required
(
tzsUserInfo
.
getJobTitle
());
String
companyType
=
getUnitType
();
tzsUserInfoVo
.
setCompanyType
(
companyType
.
contains
(
"个人主体"
)
?
"individual"
:
"no-individual"
);
Map
<
String
,
Object
>
userInfoMap
=
BeanUtil
.
beanToMap
(
tzsUserInfoVo
);
...
...
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