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
dd6d1920
Commit
dd6d1920
authored
Oct 13, 2025
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(jyjc): 报检规则4.0开发
1.报检结果页面,内部人员编号错误显示为内部编号,调整显示为身份证号
parent
5b6a1a47
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
CommonController.java
...mos/boot/module/jyjc/biz/controller/CommonController.java
+4
-4
CommonServiceImpl.java
.../boot/module/jyjc/biz/service/impl/CommonServiceImpl.java
+2
-2
No files found.
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/java/com/yeejoin/amos/boot/module/jyjc/biz/controller/CommonController.java
View file @
dd6d1920
...
...
@@ -97,12 +97,12 @@ public class CommonController extends BaseController {
if
(
CollectionUtils
.
isEmpty
(
userPhones
))
{
return
null
;
}
List
<
String
>
phones
=
userPhones
.
stream
().
filter
(
e
->
StringUtils
.
isNotEmpty
(
e
.
getInnerPersonCode
())).
map
(
TzsUserInfo:
:
getInnerPersonCode
).
collect
(
Collectors
.
toList
());
List
<
String
>
certNubs
=
userPhones
.
stream
().
map
(
TzsUserInfo:
:
getCertificateNum
).
filter
(
StringUtils:
:
isNotEmpty
).
collect
(
Collectors
.
toList
());
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
if
(
CollectionUtils
.
isEmpty
(
phone
s
))
{
map
.
put
(
"innerPersonCode"
,
"
"
);
if
(
CollectionUtils
.
isEmpty
(
certNub
s
))
{
map
.
put
(
"innerPersonCode"
,
""
);
}
else
{
String
innerPersonCode
=
String
.
join
(
","
,
phone
s
);
String
innerPersonCode
=
String
.
join
(
","
,
certNub
s
);
map
.
put
(
"innerPersonCode"
,
innerPersonCode
);
}
...
...
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/java/com/yeejoin/amos/boot/module/jyjc/biz/service/impl/CommonServiceImpl.java
View file @
dd6d1920
...
...
@@ -171,8 +171,8 @@ public class CommonServiceImpl {
public
List
<
TzsUserInfo
>
getUserPhonesByPersonCode
(
String
personCode
)
{
List
<
String
>
ids
=
StrUtil
.
split
(
personCode
,
","
);
QueryWrapper
userInfoQueryWrapper
=
new
QueryWrapper
<>();
userInfoQueryWrapper
.
in
(
"sequence_nbr"
,
ids
);
LambdaQueryWrapper
<
TzsUserInfo
>
userInfoQueryWrapper
=
new
Lambda
QueryWrapper
<>();
userInfoQueryWrapper
.
in
(
BaseEntity:
:
getSequenceNbr
,
ids
);
return
userInfoMapper
.
selectList
(
userInfoQueryWrapper
);
}
...
...
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