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
99b1a2d5
Commit
99b1a2d5
authored
Mar 10, 2025
by
韩桐桐
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'refs/heads/develop_tzs_register_test' into develop_tzs_register
parents
1603d4f0
76714de6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
JgReformNoticeDto.java
...eejoin/amos/boot/module/jg/api/dto/JgReformNoticeDto.java
+0
-3
IdxBizJgProjectContraptionController.java
.../biz/controller/IdxBizJgProjectContraptionController.java
+4
-1
JgInstallationNoticeServiceImpl.java
.../jg/biz/service/impl/JgInstallationNoticeServiceImpl.java
+1
-1
JgReformNoticeServiceImpl.java
...module/jg/biz/service/impl/JgReformNoticeServiceImpl.java
+0
-0
MonthCylinderBusinessStatisticsJob.java
...statistcs/biz/job/MonthCylinderBusinessStatisticsJob.java
+1
-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/dto/JgReformNoticeDto.java
View file @
99b1a2d5
...
@@ -181,9 +181,6 @@ public class JgReformNoticeDto extends BaseDto {
...
@@ -181,9 +181,6 @@ public class JgReformNoticeDto extends BaseDto {
@ApiModelProperty
(
value
=
"告知设备列表"
)
@ApiModelProperty
(
value
=
"告知设备列表"
)
private
List
<
Map
<
String
,
Object
>>
deviceList
;
private
List
<
Map
<
String
,
Object
>>
deviceList
;
@ApiModelProperty
(
value
=
"管道列表"
)
private
List
<
Map
<
String
,
Object
>>
pipelineList
;
@ApiModelProperty
(
value
=
"删除的管道列表"
)
@ApiModelProperty
(
value
=
"删除的管道列表"
)
private
List
<
Map
<
String
,
Object
>>
delPipelineList
;
private
List
<
Map
<
String
,
Object
>>
delPipelineList
;
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/controller/IdxBizJgProjectContraptionController.java
View file @
99b1a2d5
...
@@ -140,7 +140,10 @@ public class IdxBizJgProjectContraptionController extends BaseController {
...
@@ -140,7 +140,10 @@ public class IdxBizJgProjectContraptionController extends BaseController {
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据sequenceNbr查询单个管道工程装置表"
,
notes
=
"根据sequenceNbr查询单个管道工程装置表"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据sequenceNbr查询单个管道工程装置表"
,
notes
=
"根据sequenceNbr查询单个管道工程装置表"
)
// 传record的原因是前端组件内部写死了,此处是工程装置表seq
// 传record的原因是前端组件内部写死了,此处是工程装置表seq
public
ResponseModel
<
Object
>
detailsNotFormId
(
@RequestParam
(
"record"
)
String
sequenceNbr
)
{
public
ResponseModel
<
Object
>
detailsNotFormId
(
@RequestParam
(
"record"
)
String
sequenceNbr
)
{
return
ResponseHelper
.
buildResponse
(
idxBizJgProjectContraptionServiceImpl
.
details
(
sequenceNbr
).
get
(
EQUIP_INFO_FORM_ID
));
Map
<
String
,
Object
>
objectMap
=
idxBizJgProjectContraptionServiceImpl
.
details
(
sequenceNbr
).
get
(
EQUIP_INFO_FORM_ID
);
Object
pipelineListObj
=
objectMap
.
remove
(
"pipelineList"
);
objectMap
.
put
(
"deviceList"
,
pipelineListObj
);
return
ResponseHelper
.
buildResponse
(
objectMap
);
}
}
/**
/**
...
...
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/JgInstallationNoticeServiceImpl.java
View file @
99b1a2d5
...
@@ -814,7 +814,7 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
...
@@ -814,7 +814,7 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
List
<
Object
>
factoryNumList
=
deviceList
.
stream
().
limit
(
3
).
map
(
item
->
item
.
get
(
"pipelineNumber"
)).
collect
(
Collectors
.
toList
());
List
<
Object
>
factoryNumList
=
deviceList
.
stream
().
limit
(
3
).
map
(
item
->
item
.
get
(
"pipelineNumber"
)).
collect
(
Collectors
.
toList
());
placeholders
.
put
(
"equipTypeList"
,
equipTypeList
);
placeholders
.
put
(
"equipTypeList"
,
equipTypeList
);
placeholders
.
put
(
"produceCodeList"
,
factoryNumList
);
placeholders
.
put
(
"produceCodeList"
,
factoryNumList
);
placeholders
.
put
(
"productName"
,
historyJson
.
get
(
"projectContraption"
));
placeholders
.
put
(
"productName"
,
Optional
.
ofNullable
(
historyJson
.
get
(
"projectContraption"
)).
orElse
(
historyJson
.
get
(
"PROJECT_CONTRAPTION"
)
));
}
else
{
}
else
{
placeholders
.
put
(
"equipType"
,
getValue
.
apply
(
"equType"
));
placeholders
.
put
(
"equipType"
,
getValue
.
apply
(
"equType"
));
placeholders
.
put
(
"produceCode"
,
getValue
.
apply
(
"factoryNum"
));
placeholders
.
put
(
"produceCode"
,
getValue
.
apply
(
"factoryNum"
));
...
...
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/JgReformNoticeServiceImpl.java
View file @
99b1a2d5
This diff is collapsed.
Click to expand it.
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/java/com/yeejoin/amos/boot/module/statistcs/biz/job/MonthCylinderBusinessStatisticsJob.java
View file @
99b1a2d5
...
@@ -32,7 +32,7 @@ public class MonthCylinderBusinessStatisticsJob {
...
@@ -32,7 +32,7 @@ public class MonthCylinderBusinessStatisticsJob {
this
.
businessStatisticsMapper
=
businessStatisticsMapper
;
this
.
businessStatisticsMapper
=
businessStatisticsMapper
;
}
}
@Scheduled
(
cron
=
"0
*/5 *
* * ?"
)
@Scheduled
(
cron
=
"0
0 2
* * ?"
)
@SchedulerLock
(
name
=
"cylinderBusinessStatisticsJob"
,
lockAtMostFor
=
"PT1H"
)
@SchedulerLock
(
name
=
"cylinderBusinessStatisticsJob"
,
lockAtMostFor
=
"PT1H"
)
public
void
cylinderBusinessStatisticsJob
()
{
public
void
cylinderBusinessStatisticsJob
()
{
List
<
Map
<
String
,
Object
>>
useRegisterCountList
=
useRegistrationMapper
.
getUseRegisterCountTotal
();
List
<
Map
<
String
,
Object
>>
useRegisterCountList
=
useRegistrationMapper
.
getUseRegisterCountTotal
();
...
...
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