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
01d7e404
Commit
01d7e404
authored
Mar 06, 2025
by
hezhuozhi
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/develop_tzs_register' into develop_tzs_register
parents
162d0079
6a1fdad6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
JgUseRegistrationServiceImpl.java
...ule/jg/biz/service/impl/JgUseRegistrationServiceImpl.java
+9
-2
InformationManageTypeEnum.java
.../boot/module/ymt/api/enums/InformationManageTypeEnum.java
+1
-0
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/JgUseRegistrationServiceImpl.java
View file @
01d7e404
...
@@ -2680,10 +2680,17 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
...
@@ -2680,10 +2680,17 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
records
.
add
(
record
);
records
.
add
(
record
);
});
});
LambdaQueryWrapper
<
IdxBizJgOtherInfo
>
wrapper
=
new
LambdaQueryWrapper
<>();
LambdaQueryWrapper
<
IdxBizJgOtherInfo
>
wrapper
=
new
LambdaQueryWrapper
<>();
wrapper
.
select
(
IdxBizJgOtherInfo:
:
getRecord
,
IdxBizJgOtherInfo:
:
getInformationSituation
);
wrapper
.
select
(
IdxBizJgOtherInfo:
:
getRecord
,
IdxBizJgOtherInfo:
:
getInformationSituation
,
IdxBizJgOtherInfo:
:
getInformationSituationRemark
);
wrapper
.
in
(
IdxBizJgOtherInfo:
:
getRecord
,
records
);
wrapper
.
in
(
IdxBizJgOtherInfo:
:
getRecord
,
records
);
List
<
IdxBizJgOtherInfo
>
jgOtherInfos
=
otherInfoMapper
.
selectList
(
wrapper
);
List
<
IdxBizJgOtherInfo
>
jgOtherInfos
=
otherInfoMapper
.
selectList
(
wrapper
);
return
jgOtherInfos
.
stream
().
collect
(
Collectors
.
toMap
(
IdxBizJgOtherInfo:
:
getRecord
,
d
->
InformationManageTypeEnum
.
getName
(
d
.
getInformationSituation
()),(
k1
,
k2
)
->
k2
));
return
jgOtherInfos
.
stream
()
.
collect
(
Collectors
.
toMap
(
IdxBizJgOtherInfo:
:
getRecord
,
other
->
"3"
.
equals
(
other
.
getInformationSituation
())
?
other
.
getInformationSituationRemark
()
:
InformationManageTypeEnum
.
getName
(
other
.
getInformationSituation
()),
(
oldVal
,
newVal
)
->
newVal
));
}
}
/**
/**
...
...
amos-boot-system-tzs/amos-boot-module-ymt/amos-boot-module-ymt-api/src/main/java/com/yeejoin/amos/boot/module/ymt/api/enums/InformationManageTypeEnum.java
View file @
01d7e404
...
@@ -14,6 +14,7 @@ public enum InformationManageTypeEnum {
...
@@ -14,6 +14,7 @@ public enum InformationManageTypeEnum {
*/
*/
TYPE_QR_CODE
(
"1"
,
"二维码"
),
TYPE_QR_CODE
(
"1"
,
"二维码"
),
TYPE_STAMP
(
"2"
,
"电子标签"
),
TYPE_STAMP
(
"2"
,
"电子标签"
),
TYPE_OTHER
(
"3"
,
"其他"
),
TYPE_NO
(
"99"
,
"无"
);
TYPE_NO
(
"99"
,
"无"
);
private
String
code
;
private
String
code
;
...
...
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