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
e97c1d15
Commit
e97c1d15
authored
Jun 13, 2025
by
刘林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(jg):维修告知bug修改
parent
51420310
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
6 deletions
+9
-6
JgMaintainNoticeServiceImpl.java
...dule/jg/biz/service/impl/JgMaintainNoticeServiceImpl.java
+1
-2
IdxBizJgProjectContraptionMapper.java
...dule/ymt/api/mapper/IdxBizJgProjectContraptionMapper.java
+2
-1
IdxBizJgProjectContraptionMapper.xml
...ain/resources/mapper/IdxBizJgProjectContraptionMapper.xml
+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/JgMaintainNoticeServiceImpl.java
View file @
e97c1d15
...
...
@@ -285,9 +285,8 @@ public class JgMaintainNoticeServiceImpl extends BaseService<JgMaintainNoticeDto
.
map
(
JgMaintainNoticeEq:
:
getEquId
)
.
collect
(
Collectors
.
toList
());
String
equListCode
=
String
.
valueOf
(
maintainInfo
.
get
(
"EQU_LIST_CODE"
));
String
projectContraptionId
=
String
.
valueOf
(
maintainInfo
.
get
(
"projectContraptionId"
));
List
<
Map
<
String
,
Object
>>
deviceList
=
EquipmentClassifityEnum
.
YLGD
.
getCode
().
equals
(
equListCode
)
?
idxBizJgProjectContraptionMapper
.
selectPipelineList
(
projectContraptionId
)
?
idxBizJgProjectContraptionMapper
.
selectPipelineList
(
equIds
)
:
getEquipListMaps
(
esEquipmentCategory
.
findAllById
(
equIds
));
maintainInfo
.
put
(
"deviceList"
,
deviceList
);
...
...
amos-boot-system-tzs/amos-boot-module-ymt/amos-boot-module-ymt-api/src/main/java/com/yeejoin/amos/boot/module/ymt/api/mapper/IdxBizJgProjectContraptionMapper.java
View file @
e97c1d15
...
...
@@ -108,5 +108,5 @@ public interface IdxBizJgProjectContraptionMapper extends BaseMapper<IdxBizJgPro
*/
List
<
Map
<
String
,
Object
>>
selectPipelineListPage
(
@Param
(
"sequenceNbr"
)
String
sequenceNbr
,
@Param
(
"current"
)
int
current
,
@Param
(
"size"
)
int
size
);
List
<
Map
<
String
,
Object
>>
selectPipelineList
(
@Param
(
"
sequenceNbr"
)
String
sequenceNbr
);
List
<
Map
<
String
,
Object
>>
selectPipelineList
(
@Param
(
"
equIds"
)
List
<
String
>
equIds
);
}
\ No newline at end of file
amos-boot-system-tzs/amos-boot-module-ymt/amos-boot-module-ymt-api/src/main/resources/mapper/IdxBizJgProjectContraptionMapper.xml
View file @
e97c1d15
...
...
@@ -246,10 +246,13 @@
<select
id=
"selectPipelineList"
resultType=
"java.util.Map"
>
<include
refid=
"Base_Column_List"
/>
FROM
IDX_BIZ_JG_PROJECT_CONTRAPTION ibjpc
LEFT JOIN
idx_biz_jg_use_info ibjui
ON ibjui.PROJECT_CONTRAPTION_ID = ibjpc.SEQUENCE_NBR
FROM
idx_biz_jg_use_info ibjui
LEFT JOIN
IDX_BIZ_JG_PROJECT_CONTRAPTION ibjpc
ON ibjui.PROJECT_CONTRAPTION_ID = ibjpc.SEQUENCE_NBR
LEFT JOIN idx_biz_jg_tech_params_pipeline ibjtpp ON ibjui.RECORD = ibjtpp.RECORD
WHERE ibjpc.SEQUENCE_NBR = #{sequenceNbr}
WHERE ibjui.record in
<foreach
collection =
'equIds'
item=
'equId'
index=
'index'
open=
"("
close=
")"
separator=
","
>
#{equId}
</foreach>
ORDER BY ibjtpp.REC_DATE ASC
</select>
...
...
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