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
1345952f
Commit
1345952f
authored
Jan 07, 2026
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(jg): 压力管道后续业务
1.启用停用检验报告格式化
parent
1f98e347
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
BusinessTypeEnum.java
...ejoin/amos/boot/module/jg/api/enums/BusinessTypeEnum.java
+3
-7
JgEnableDisableServiceImpl.java
...odule/jg/biz/service/impl/JgEnableDisableServiceImpl.java
+4
-1
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/enums/BusinessTypeEnum.java
View file @
1345952f
package
com
.
yeejoin
.
amos
.
boot
.
module
.
jg
.
api
.
enums
;
import
lombok.Getter
;
import
java.util.Arrays
;
import
java.util.Optional
;
...
...
@@ -8,6 +10,7 @@ import java.util.Optional;
*
* @author Administrator
*/
@Getter
public
enum
BusinessTypeEnum
{
/**
...
...
@@ -96,11 +99,4 @@ public enum BusinessTypeEnum {
.
findFirst
();
}
public
String
getCode
()
{
return
code
;
}
public
String
getName
()
{
return
name
;
}
}
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/JgEnableDisableServiceImpl.java
View file @
1345952f
...
...
@@ -1007,6 +1007,8 @@ public class JgEnableDisableServiceImpl extends BaseService<JgEnableDisableDto,
}
public
IPage
<
Map
<
String
,
Object
>>
findPipeLinePage
(
Page
<
Map
<
String
,
Object
>>
page
,
String
projectContraptionId
,
String
applyType
)
{
return
this
.
getBaseMapper
().
selectPipeLinePage
(
page
,
projectContraptionId
,
applyType
);
IPage
<
Map
<
String
,
Object
>>
re
=
this
.
getBaseMapper
().
selectPipeLinePage
(
page
,
projectContraptionId
,
applyType
);
re
.
getRecords
().
forEach
(
item
->
item
.
put
(
"inspectReport"
,
Optional
.
ofNullable
(
item
.
get
(
"inspectReport"
)).
map
(
r
->
JSON
.
parse
(
r
.
toString
())).
orElse
(
null
)));
return
re
;
}
}
\ No newline at end of file
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