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
cfac6ed7
Commit
cfac6ed7
authored
Jul 02, 2025
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(综合搜索):字段调整
1.人员资质作业项目+资质项目,调整为逗号分割 2.企业+人员信息增加创建日期
parent
86092161
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
DataHandlerServiceImpl.java
...ot/module/jg/biz/service/impl/DataHandlerServiceImpl.java
+2
-0
StatisticsDataUpdateService.java
...g/biz/statistics/service/StatisticsDataUpdateService.java
+6
-3
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/DataHandlerServiceImpl.java
View file @
cfac6ed7
...
@@ -1488,6 +1488,8 @@ public class DataHandlerServiceImpl {
...
@@ -1488,6 +1488,8 @@ public class DataHandlerServiceImpl {
return
permissions
.
stream
().
map
(
p
->
{
return
permissions
.
stream
().
map
(
p
->
{
EsUserInfo
.
License
license
=
new
EsUserInfo
.
License
();
EsUserInfo
.
License
license
=
new
EsUserInfo
.
License
();
BeanUtil
.
copyProperties
(
p
,
license
);
BeanUtil
.
copyProperties
(
p
,
license
);
license
.
setPermissionItem
(
StatisticsDataUpdateService
.
castStrList2String
(
p
.
getPermissionItem
()));
license
.
setJobItem
(
StatisticsDataUpdateService
.
castStrList2String
(
p
.
getJobItem
()));
return
license
;
return
license
;
}).
collect
(
Collectors
.
toList
());
}).
collect
(
Collectors
.
toList
());
}
}
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/statistics/service/StatisticsDataUpdateService.java
View file @
cfac6ed7
...
@@ -50,11 +50,14 @@ public class StatisticsDataUpdateService {
...
@@ -50,11 +50,14 @@ public class StatisticsDataUpdateService {
return
String
.
join
(
","
,
posts
);
return
String
.
join
(
","
,
posts
);
}
}
public
static
String
castStrList2String
(
String
postJsonStr
){
public
static
String
castStrList2String
(
String
jsonTypesStr
){
if
(!
isNullOrEmpty
(
postJsonStr
)){
if
(!
isNullOrEmpty
(
jsonTypesStr
)){
List
<
String
>
posts
=
JSON
.
parseArray
(
postJsonStr
,
String
.
class
);
if
(
isJSONValid
(
jsonTypesStr
)){
List
<
String
>
posts
=
JSON
.
parseArray
(
jsonTypesStr
,
String
.
class
);
return
String
.
join
(
","
,
posts
);
return
String
.
join
(
","
,
posts
);
}
}
return
jsonTypesStr
;
}
return
null
;
return
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