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
f4ea877c
Commit
f4ea877c
authored
Nov 15, 2022
by
tianyiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
11608
parent
24d3d23a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
85 additions
and
149 deletions
+85
-149
SupervisionConfigureController.java
...quipmanage/controller/SupervisionConfigureController.java
+10
-29
EquipmentSpecificAlarmMapper.xml
...rc/main/resources/mapper/EquipmentSpecificAlarmMapper.xml
+75
-120
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/controller/SupervisionConfigureController.java
View file @
f4ea877c
...
...
@@ -62,10 +62,6 @@ public class SupervisionConfigureController extends AbstractBaseController {
if
(
commonPageable
.
getPageNumber
()
==
0
)
{
commonPageable
.
setPageNumber
(
1
);
}
if
(
StringUtils
.
isEmpty
(
bizOrgCode
))
{
ReginParams
reginParams
=
getSelectedOrgInfo
();
bizOrgCode
=
!
ValidationUtil
.
isEmpty
(
reginParams
.
getPersonIdentity
())
&&
StringUtil
.
isNotEmpty
(
reginParams
.
getPersonIdentity
().
getBizOrgCode
())
?
reginParams
.
getPersonIdentity
().
getBizOrgCode
()
:
null
;
}
Page
page
=
new
Page
<>(
commonPageable
.
getPageNumber
(),
commonPageable
.
getPageSize
());
return
CommonResponseUtil
.
success
(
fireFightingSystemMapper
.
getWaterInfoBySuper
(
page
,
bizOrgCode
));
}
...
...
@@ -94,10 +90,6 @@ public class SupervisionConfigureController extends AbstractBaseController {
if
(
commonPageable
.
getPageNumber
()
==
0
)
{
commonPageable
.
setPageNumber
(
1
);
}
if
(
StringUtils
.
isEmpty
(
bizOrgCode
))
{
ReginParams
reginParams
=
getSelectedOrgInfo
();
bizOrgCode
=
!
ValidationUtil
.
isEmpty
(
reginParams
.
getPersonIdentity
())
&&
StringUtil
.
isNotEmpty
(
reginParams
.
getPersonIdentity
().
getBizOrgCode
())
?
reginParams
.
getPersonIdentity
().
getBizOrgCode
()
:
null
;
}
Page
page
=
new
Page
<>(
commonPageable
.
getPageNumber
(),
commonPageable
.
getPageSize
());
return
CommonResponseUtil
.
success
(
fireFightingSystemMapper
.
getPipeNetworkBySuper
(
page
,
bizOrgCode
));
}
...
...
@@ -196,11 +188,13 @@ public class SupervisionConfigureController extends AbstractBaseController {
@RequestMapping
(
value
=
"/fireAlarmLogPage"
,
method
=
RequestMethod
.
GET
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"消防报警列表分页查询"
,
produces
=
"application/json;charset=UTF-8"
,
notes
=
"消防报警列表分页查询"
)
public
ResponseModel
pageQuery
(
@RequestParam
(
required
=
false
)
String
code
,
@RequestParam
(
required
=
false
)
String
typeCode
,
CommonPageable
commonPageable
)
{
public
ResponseModel
pageQuery
(
@RequestParam
(
required
=
false
)
String
code
,
@RequestParam
(
required
=
false
)
String
typeCode
,
@RequestParam
(
required
=
false
)
String
bizOrgCode
,
CommonPageable
commonPageable
)
{
if
(
commonPageable
.
getPageNumber
()
==
0
)
{
commonPageable
.
setPageNumber
(
1
);
}
ReginParams
reginParams
=
getSelectedOrgInfo
();
List
<
CommonRequest
>
queryRequests
=
new
ArrayList
<>();
CommonRequest
request7
=
new
CommonRequest
();
request7
.
setName
(
"system"
);
...
...
@@ -210,12 +204,10 @@ public class SupervisionConfigureController extends AbstractBaseController {
request8
.
setName
(
"specificIndexKey"
);
request8
.
setValue
(
StringUtil
.
isNotEmpty
(
typeCode
)
?
StringUtils
.
trimToNull
(
typeCode
)
:
null
);
queryRequests
.
add
(
request8
);
if
(!
ValidationUtil
.
isEmpty
(
reginParams
.
getPersonIdentity
()))
{
CommonRequest
request13
=
new
CommonRequest
();
request13
.
setName
(
"bizOrgCode"
);
request13
.
setValue
(
StringUtil
.
isNotEmpty
(
reginParams
.
getPersonIdentity
().
getBizOrgCode
())
?
reginParams
.
getPersonIdentity
().
getBizOrgCode
()
:
null
);
queryRequests
.
add
(
request13
);
}
CommonRequest
request13
=
new
CommonRequest
();
request13
.
setName
(
"bizOrgCode"
);
request13
.
setValue
(
StringUtil
.
isNotEmpty
(
bizOrgCode
)
?
StringUtils
.
trimToNull
(
typeCode
)
:
null
);
queryRequests
.
add
(
request13
);
CommonPageInfoParam
param
=
CommonPageParamUtil
.
fillCommonPageInfoParam
(
queryRequests
,
commonPageable
);
return
CommonResponseUtil
.
success
(
equipmentSpecificAlarmService
.
fireAlarmLogPage
(
param
));
}
...
...
@@ -225,16 +217,7 @@ public class SupervisionConfigureController extends AbstractBaseController {
@RequestMapping
(
value
=
"/alarmTrend"
,
method
=
RequestMethod
.
GET
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"报警类型趋势"
,
produces
=
"application/json;charset=UTF-8"
,
notes
=
"报警类型趋势"
)
public
ResponseModel
alarmTrend
()
{
String
bizOrgCode
=
null
;
ReginParams
reginParams
=
getSelectedOrgInfo
();
ReginParams
.
PersonIdentity
personIdentity
=
reginParams
.
getPersonIdentity
();
if
(!
ValidationUtil
.
isEmpty
(
personIdentity
))
{
bizOrgCode
=
personIdentity
.
getBizOrgCode
();
if
(
bizOrgCode
==
null
)
{
return
CommonResponseUtil
.
success
(
null
);
}
}
public
ResponseModel
alarmTrend
(
@RequestParam
(
required
=
false
)
String
bizOrgCode
)
{
return
CommonResponseUtil
.
success
(
equipmentSpecificAlarmService
.
alarmTrend
(
bizOrgCode
));
}
...
...
@@ -242,12 +225,10 @@ public class SupervisionConfigureController extends AbstractBaseController {
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@ApiOperation
(
value
=
"概览稳压泵信息"
)
@GetMapping
(
"/getPressurePumpInfo"
)
public
ResponseModel
getPressurePumpInfo
(
CommonPageable
commonPageable
)
{
public
ResponseModel
getPressurePumpInfo
(
CommonPageable
commonPageable
,
@RequestParam
(
required
=
false
)
String
bizOrgCode
)
{
if
(
commonPageable
.
getPageNumber
()
==
0
)
{
commonPageable
.
setPageNumber
(
1
);
}
ReginParams
reginParams
=
getSelectedOrgInfo
();
String
bizOrgCode
=
!
ValidationUtil
.
isEmpty
(
reginParams
.
getPersonIdentity
())
&&
StringUtil
.
isNotEmpty
(
reginParams
.
getPersonIdentity
().
getBizOrgCode
())
?
reginParams
.
getPersonIdentity
().
getBizOrgCode
()
:
null
;
Page
page
=
new
Page
<>(
commonPageable
.
getPageNumber
(),
commonPageable
.
getPageSize
());
if
(
StringUtils
.
isEmpty
(
bizOrgCode
))
{
return
CommonResponseUtil
.
success
(
null
);
...
...
amos-boot-system-equip/src/main/resources/mapper/EquipmentSpecificAlarmMapper.xml
View file @
f4ea877c
...
...
@@ -261,7 +261,7 @@
</if>
</where>
ORDER BY wlesal.create_date DESC
</select>
<select
id=
"zlzxPage"
resultType=
"java.util.HashMap"
>
SELECT
...
...
@@ -1025,7 +1025,7 @@
AND d.type = #{dto.type}
</when>
<otherwise>
and (d.type in (select type_code from wl_signal_classify where is_alarm=1))
</otherwise>
...
...
@@ -1394,130 +1394,85 @@
<select
id=
"alarmTrend"
resultType=
"java.util.Map"
>
SELECT
`result`.`click_date` AS `click_date`,
`a`.`fireAlarmNum`
AS `fireAlarmNum`,
`b`.`breakdownNum`
AS `breakdownNum`,
`c`.`shieldNum`
AS `shieldNum`,
`d`.`otherNum`
AS `otherNum`
IFNULL( `a`.`fireAlarmNum`, 0 )
AS `fireAlarmNum`,
IFNULL( `b`.`breakdownNum`, 0 )
AS `breakdownNum`,
IFNULL( `c`.`shieldNum`, 0 )
AS `shieldNum`,
IFNULL( `d`.`otherNum`, 0 )
AS `otherNum`
FROM
((((
`v_monitor_event_utils_week` `result`
LEFT JOIN (
SELECT
`weekUtil`.`click_date` AS `click_date`,
ifnull( count( `fireAlarm`.`id` ), 0 ) AS `fireAlarmNum`
FROM
(
`v_monitor_event_utils_week` `weekUtil`
LEFT JOIN (
SELECT
log.*
FROM
`wl_equipment_specific_alarm_log` `log`
LEFT JOIN wl_equipment_specific wes ON `log`.equipment_specific_id = wes.id
<where>
<if
test=
"bizOrgCode != null and bizOrgCode != ''"
>
wes.biz_org_code like concat (#{bizOrgCode},'%')
</if>
</where>
) fireAlarm ON (((
date_format( `fireAlarm`.`create_date`, '%Y-%m-%d' ) = `weekUtil`.`click_date`
)
AND ( `fireAlarm`.`type` = 'FIREALARM' )
)))
GROUP BY
`weekUtil`.`click_date`
ORDER BY
`weekUtil`.`click_date`
) `a` ON ((
`a`.`click_date` = `result`.`click_date`
)))
LEFT JOIN (
SELECT
`weekUtil`.`click_date` AS `click_date`,
ifnull( count( `breakdown`.`id` ), 0 ) AS `breakdownNum`
FROM
(
`v_monitor_event_utils_week` `weekUtil`
LEFT JOIN (
SELECT
log.*
FROM
`wl_equipment_specific_alarm_log` `log`
LEFT JOIN wl_equipment_specific wes ON `log`.equipment_specific_id = wes.id
<where>
<if
test=
"bizOrgCode != null and bizOrgCode != ''"
>
wes.biz_org_code like concat (#{bizOrgCode},'%')
</if>
</where>
) `breakdown` ON (((
`weekUtil`.`click_date` = date_format( `breakdown`.`create_date`, '%Y-%m-%d' ))
AND ( `breakdown`.`type` = 'BREAKDOWN' ))))
GROUP BY
`weekUtil`.`click_date`
ORDER BY
`weekUtil`.`click_date`
SELECT
SUBSTRING_INDEX( log.create_date, " ", 1 ) date,
count( SUBSTRING_INDEX( log.create_date, " ", 1 )) AS `fireAlarmNum`
FROM
`wl_equipment_specific_alarm_log` `log`
LEFT JOIN wl_equipment_specific wes ON `log`.equipment_specific_id = wes.id
AND log.`type` = 'FIREALARM'
<where>
<if
test=
"bizOrgCode != null and bizOrgCode != ''"
>
wes.biz_org_code like concat (#{bizOrgCode},'%')
</if>
</where>
GROUP BY
SUBSTRING_INDEX(log.create_date," ",1)
) `a` ON ((
`a`.`date` = `result`.`click_date`
)))
LEFT JOIN (
SELECT
SUBSTRING_INDEX( log.create_date, " ", 1 ) date,
count( SUBSTRING_INDEX( log.create_date, " ", 1 )) AS `breakdownNum`
FROM
`wl_equipment_specific_alarm_log` `log`
LEFT JOIN wl_equipment_specific wes ON `log`.equipment_specific_id = wes.id
AND log.`type` = 'BREAKDOWN'
<where>
<if
test=
"bizOrgCode != null and bizOrgCode != ''"
>
wes.biz_org_code like concat (#{bizOrgCode},'%')
</if>
</where>
GROUP BY
SUBSTRING_INDEX(log.create_date," ",1)
) `b` ON ((
`b`.`click_date` = `result`.`click_date`
)))
LEFT JOIN (
SELECT
`weekUtil`.`click_date` AS `click_date`,
ifnull( count( `shield`.`id` ), 0 ) AS `shieldNum`
FROM
(
`v_monitor_event_utils_week` `weekUtil`
LEFT JOIN (
SELECT
log.*
FROM
`wl_equipment_specific_alarm_log` `log`
LEFT JOIN wl_equipment_specific wes ON `log`.equipment_specific_id = wes.id
<where>
<if
test=
"bizOrgCode != null and bizOrgCode != ''"
>
wes.biz_org_code like concat (#{bizOrgCode},'%')
</if>
</where>
) `shield` ON (((
date_format( `shield`.`create_date`, '%Y-%m-%d' ) = `weekUtil`.`click_date`
)
AND ( `shield`.`type` = 'SHIELD' ))))
GROUP BY
`weekUtil`.`click_date`
ORDER BY
`weekUtil`.`click_date`
) `c` ON ((
`c`.`click_date` = `result`.`click_date`
)))
LEFT JOIN (
SELECT
`weekUtil`.`click_date` AS `click_date`,
ifnull( count( `other`.`id` ), 0 ) AS `otherNum`
FROM
(
`v_monitor_event_utils_week` `weekUtil`
LEFT JOIN (
SELECT
log.*
FROM
`wl_equipment_specific_alarm_log` `log`
LEFT JOIN wl_equipment_specific wes ON `log`.equipment_specific_id = wes.id
<where>
<if
test=
"bizOrgCode != null and bizOrgCode != ''"
>
wes.biz_org_code like concat (#{bizOrgCode},'%')
</if>
</where>
) `other` ON (((
date_format( `other`.`create_date`, '%Y-%m-%d' ) = `weekUtil`.`click_date`
)
AND (
`other`.`type` NOT IN ( 'SHIELD', 'BREAKDOWN', 'FIREALARM' )))))
GROUP BY
`weekUtil`.`click_date`
ORDER BY
`weekUtil`.`click_date`
) `d` ON ((
`d`.`click_date` = `result`.`click_date`
`b`.`date` = `result`.`click_date`
)))
LEFT JOIN (
SELECT
SUBSTRING_INDEX( log.create_date, " ", 1 ) date,
count( SUBSTRING_INDEX( log.create_date, " ", 1 )) AS `shieldNum`
FROM
`wl_equipment_specific_alarm_log` `log`
LEFT JOIN wl_equipment_specific wes ON `log`.equipment_specific_id = wes.id
AND log.`type` = 'SHIELD'
<where>
<if
test=
"bizOrgCode != null and bizOrgCode != ''"
>
wes.biz_org_code like concat (#{bizOrgCode},'%')
</if>
</where>
GROUP BY
SUBSTRING_INDEX(log.create_date," ",1)
) `c` ON ((
`c`.`date` = `result`.`click_date`
)))
LEFT JOIN (
SELECT
SUBSTRING_INDEX( log.create_date, " ", 1 ) date,
count( SUBSTRING_INDEX( log.create_date, " ", 1 )) AS `otherNum`
FROM
`wl_equipment_specific_alarm_log` `log`
LEFT JOIN wl_equipment_specific wes ON `log`.equipment_specific_id = wes.id
AND log.`type` NOT IN ( 'SHIELD', 'BREAKDOWN', 'FIREALARM' )
<where>
<if
test=
"bizOrgCode != null and bizOrgCode != ''"
>
wes.biz_org_code like concat (#{bizOrgCode},'%')
</if>
</where>
GROUP BY
SUBSTRING_INDEX(log.create_date," ",1)
) `d` ON ((
`d`.`date` = `result`.`click_date`
)))
ORDER BY
`result`.`click_date`
</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