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
2c62d3f5
Commit
2c62d3f5
authored
Feb 21, 2023
by
高建强
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
item:稳压泵统计与分析参数优化
parent
c1c09215
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
47 additions
and
30 deletions
+47
-30
PressurePumpAnalysisEnum.java
...in/equipmanage/common/enums/PressurePumpAnalysisEnum.java
+29
-9
EmergencyController.java
...m/yeejoin/equipmanage/controller/EmergencyController.java
+4
-5
IEmergencyService.java
...va/com/yeejoin/equipmanage/service/IEmergencyService.java
+2
-2
EmergencyServiceImpl.java
...eejoin/equipmanage/service/impl/EmergencyServiceImpl.java
+11
-14
nameKeyInfo.json
...oot-system-equip/src/main/resources/json/nameKeyInfo.json
+1
-0
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-equip-api/src/main/java/com/yeejoin/equipmanage/common/enums/PressurePumpAnalysisEnum.java
View file @
2c62d3f5
...
@@ -13,17 +13,17 @@ import java.util.Map;
...
@@ -13,17 +13,17 @@ import java.util.Map;
public
enum
PressurePumpAnalysisEnum
{
public
enum
PressurePumpAnalysisEnum
{
PRESSURE_PUMP_FAULT
(
"1"
,
"1"
,
"稳压泵是否故障"
,
"无"
,
""
),
PRESSURE_PUMP_FAULT
(
"1"
,
"1"
,
"稳压泵是否故障"
,
"无"
,
""
),
PRESSURE_PUMP_INTERVAL
(
"2"
,
"2"
,
"最近一次启停间隔"
,
"0"
,
"分钟"
),
PRESSURE_PUMP_INTERVAL
(
"2"
,
"2"
,
"最近一次启停间隔"
,
0
,
"分钟"
),
PRESSURE_PUMP_DURATION
(
"3"
,
"3"
,
"最近一次启动时长"
,
"0"
,
"分钟"
),
PRESSURE_PUMP_DURATION
(
"3"
,
"3"
,
"最近一次启动时长"
,
0
,
"分钟"
),
PRESSURE_PUMP_HALF
(
"4"
,
"4"
,
"半小时启动"
,
"0"
,
"次"
),
PRESSURE_PUMP_HALF
(
"4"
,
"4"
,
"半小时启动"
,
0
,
"次"
),
PRESSURE_PUMP_TWO
(
"5"
,
"5"
,
"2小时启动"
,
"0"
,
"次"
),
PRESSURE_PUMP_TWO
(
"5"
,
"5"
,
"2小时启动"
,
0
,
"次"
),
PRESSURE_PUMP_PIPE
(
"6"
,
"6"
,
"管网压力"
,
"正常"
,
""
);
PRESSURE_PUMP_PIPE
(
"6"
,
"6"
,
"管网压力"
,
"正常"
,
""
);
private
final
String
key
;
private
String
key
;
private
final
String
code
;
private
String
code
;
private
final
String
name
;
private
String
name
;
private
final
Object
value
;
private
Object
value
;
private
final
String
unit
;
private
String
unit
;
PressurePumpAnalysisEnum
(
String
key
,
String
code
,
String
name
,
Object
value
,
String
unit
)
{
PressurePumpAnalysisEnum
(
String
key
,
String
code
,
String
name
,
Object
value
,
String
unit
)
{
this
.
key
=
key
;
this
.
key
=
key
;
...
@@ -37,22 +37,42 @@ public enum PressurePumpAnalysisEnum {
...
@@ -37,22 +37,42 @@ public enum PressurePumpAnalysisEnum {
return
key
;
return
key
;
}
}
public
void
setKey
(
String
key
)
{
this
.
key
=
key
;
}
public
String
getCode
()
{
public
String
getCode
()
{
return
code
;
return
code
;
}
}
public
void
setCode
(
String
code
)
{
this
.
code
=
code
;
}
public
String
getName
()
{
public
String
getName
()
{
return
name
;
return
name
;
}
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
Object
getValue
()
{
public
Object
getValue
()
{
return
value
;
return
value
;
}
}
public
void
setValue
(
Object
value
)
{
this
.
value
=
value
;
}
public
String
getUnit
()
{
public
String
getUnit
()
{
return
unit
;
return
unit
;
}
}
public
void
setUnit
(
String
unit
)
{
this
.
unit
=
unit
;
}
public
static
List
<
Map
<
String
,
Object
>>
getList
(){
public
static
List
<
Map
<
String
,
Object
>>
getList
(){
PressurePumpAnalysisEnum
[]
values
=
PressurePumpAnalysisEnum
.
values
();
PressurePumpAnalysisEnum
[]
values
=
PressurePumpAnalysisEnum
.
values
();
List
<
Map
<
String
,
Object
>>
list
=
new
ArrayList
<>();
List
<
Map
<
String
,
Object
>>
list
=
new
ArrayList
<>();
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/controller/EmergencyController.java
View file @
2c62d3f5
...
@@ -578,7 +578,7 @@ public class EmergencyController extends AbstractBaseController {
...
@@ -578,7 +578,7 @@ public class EmergencyController extends AbstractBaseController {
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/getPressurePumpStatusChart"
)
@GetMapping
(
value
=
"/getPressurePumpStatusChart"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"四横八纵-稳压泵启停状态图"
,
notes
=
"四横八纵-稳压泵启停状态图"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"四横八纵-稳压泵启停状态图"
,
notes
=
"四横八纵-稳压泵启停状态图"
)
public
ResponseModel
getPressurePumpStatusChart
(
@RequestParam
String
equipmentCode
,
@RequestParam
String
startTime
,
@RequestParam
String
endTime
,
public
ResponseModel
getPressurePumpStatusChart
(
@RequestParam
String
startTime
,
@RequestParam
String
endTime
,
@RequestParam
(
required
=
false
)
String
bizOrgCode
)
{
@RequestParam
(
required
=
false
)
String
bizOrgCode
)
{
if
(
StringUtils
.
isEmpty
(
bizOrgCode
))
{
if
(
StringUtils
.
isEmpty
(
bizOrgCode
))
{
ReginParams
reginParams
=
getSelectedOrgInfo
();
ReginParams
reginParams
=
getSelectedOrgInfo
();
...
@@ -590,15 +590,14 @@ public class EmergencyController extends AbstractBaseController {
...
@@ -590,15 +590,14 @@ public class EmergencyController extends AbstractBaseController {
}
}
}
}
}
}
return
CommonResponseUtil
.
success
(
iEmergencyService
.
getPressurePumpStatusChart
(
startTime
,
endTime
,
bizOrgCode
,
getAppKey
(),
getProduct
(),
getToken
()
));
return
CommonResponseUtil
.
success
(
iEmergencyService
.
getPressurePumpStatusChart
(
startTime
,
endTime
,
bizOrgCode
));
}
}
@PersonIdentify
@PersonIdentify
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/getPressurePumpDiagnosticAnalysis"
)
@GetMapping
(
value
=
"/getPressurePumpDiagnosticAnalysis"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"四横八纵-稳压泵诊断分析"
,
notes
=
"四横八纵-稳压泵诊断分析"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"四横八纵-稳压泵诊断分析"
,
notes
=
"四横八纵-稳压泵诊断分析"
)
public
ResponseModel
getPressurePumpDiagnosticAnalysis
(
@RequestParam
String
equipmentCode
,
@RequestParam
(
required
=
false
)
String
nameKeys
,
public
ResponseModel
getPressurePumpDiagnosticAnalysis
(
@RequestParam
(
required
=
false
)
String
bizOrgCode
)
{
@RequestParam
(
required
=
false
)
String
fieldKey
,
@RequestParam
(
required
=
false
)
String
bizOrgCode
)
{
if
(
StringUtils
.
isEmpty
(
bizOrgCode
))
{
if
(
StringUtils
.
isEmpty
(
bizOrgCode
))
{
ReginParams
reginParams
=
getSelectedOrgInfo
();
ReginParams
reginParams
=
getSelectedOrgInfo
();
ReginParams
.
PersonIdentity
personIdentity
=
reginParams
.
getPersonIdentity
();
ReginParams
.
PersonIdentity
personIdentity
=
reginParams
.
getPersonIdentity
();
...
@@ -609,7 +608,7 @@ public class EmergencyController extends AbstractBaseController {
...
@@ -609,7 +608,7 @@ public class EmergencyController extends AbstractBaseController {
}
}
}
}
}
}
return
CommonResponseUtil
.
success
(
iEmergencyService
.
getPressurePumpDiagnosticAnalysis
(
nameKeys
,
fieldKey
,
bizOrgCode
,
getAppKey
(),
getProduct
(),
getToken
()
));
return
CommonResponseUtil
.
success
(
iEmergencyService
.
getPressurePumpDiagnosticAnalysis
(
bizOrgCode
));
}
}
@PersonIdentify
@PersonIdentify
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/IEmergencyService.java
View file @
2c62d3f5
...
@@ -54,9 +54,9 @@ public interface IEmergencyService {
...
@@ -54,9 +54,9 @@ public interface IEmergencyService {
Map
<
String
,
Integer
>
getStockEquipStatistics
();
Map
<
String
,
Integer
>
getStockEquipStatistics
();
Map
<
String
,
Object
>
getPressurePumpStatusChart
(
String
startTime
,
String
endTime
,
String
bizOrgCode
,
String
appKey
,
String
product
,
String
token
);
Map
<
String
,
Object
>
getPressurePumpStatusChart
(
String
startTime
,
String
endTime
,
String
bizOrgCode
);
List
<
Map
<
String
,
Object
>>
getPressurePumpDiagnosticAnalysis
(
String
nameKeys
,
String
fieldKey
,
String
bizOrgCode
,
String
appKey
,
String
product
,
String
token
);
List
<
Map
<
String
,
Object
>>
getPressurePumpDiagnosticAnalysis
(
String
bizOrgCode
);
Page
<
Map
<
String
,
Object
>>
alarmList
(
Page
<
Map
<
String
,
Object
>>
page
,
String
bizOrgCode
,
List
<
String
>
types
,
List
<
String
>
emergencyLevels
,
String
name
,
Integer
cleanStatus
,
Integer
handleStatus
);
Page
<
Map
<
String
,
Object
>>
alarmList
(
Page
<
Map
<
String
,
Object
>>
page
,
String
bizOrgCode
,
List
<
String
>
types
,
List
<
String
>
emergencyLevels
,
String
name
,
Integer
cleanStatus
,
Integer
handleStatus
);
}
}
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/EmergencyServiceImpl.java
View file @
2c62d3f5
package
com
.
yeejoin
.
equipmanage
.
service
.
impl
;
package
com
.
yeejoin
.
equipmanage
.
service
.
impl
;
import
com.alibaba.fastjson.JSON
;
import
com.alibaba.fastjson.JSONArray
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yeejoin.amos.boot.biz.common.utils.DateUtils
;
import
com.yeejoin.amos.boot.biz.common.utils.DateUtils
;
import
com.yeejoin.equipmanage.common.entity.EquipmentSpecificAlarmLog
;
import
com.yeejoin.equipmanage.common.entity.EquipmentSpecificAlarmLog
;
...
@@ -23,7 +21,6 @@ import org.springframework.beans.factory.annotation.Autowired;
...
@@ -23,7 +21,6 @@ import org.springframework.beans.factory.annotation.Autowired;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
org.springframework.util.CollectionUtils
;
import
org.springframework.util.CollectionUtils
;
import
org.typroject.tyboot.core.restful.utils.ResponseModel
;
import
java.util.*
;
import
java.util.*
;
import
java.util.stream.Collectors
;
import
java.util.stream.Collectors
;
...
@@ -228,21 +225,21 @@ public class EmergencyServiceImpl implements IEmergencyService {
...
@@ -228,21 +225,21 @@ public class EmergencyServiceImpl implements IEmergencyService {
}
}
@Override
@Override
public
List
<
Map
<
String
,
Object
>>
getPressurePumpDiagnosticAnalysis
(
String
nameKeys
,
String
fieldKey
,
String
bizOrgCode
,
String
appKey
,
String
product
,
String
token
)
{
public
List
<
Map
<
String
,
Object
>>
getPressurePumpDiagnosticAnalysis
(
String
bizOrgCode
)
{
List
<
Map
<
String
,
Object
>>
list
=
PressurePumpAnalysisEnum
.
getList
();
// 从 json 配置文件获取配置信息
// 从 json 配置文件获取配置信息
List
<
Map
>
infoList
=
pressurePumpService
.
getNameKeyInfoList
(
PressurePumpRelateEnum
.
PRESSURE_PUMP
.
getValue
());
List
<
Map
>
infoList
=
pressurePumpService
.
getNameKeyInfoList
(
PressurePumpRelateEnum
.
PRESSURE_PUMP
.
getValue
());
if
(!
CollectionUtils
.
isEmpty
(
infoList
))
{
if
(!
CollectionUtils
.
isEmpty
(
infoList
))
{
Map
map
=
infoList
.
get
(
0
);
Map
map
=
infoList
.
get
(
0
);
String
equipmentCode
=
map
.
get
(
"equipmentCode"
).
toString
();
String
equipmentCode
=
map
.
get
(
"equipmentCode"
).
toString
();
String
faultNameKey
=
map
.
get
(
"faultNameKey"
).
toString
();
// 获取redis稳压泵缓存数据,默认JSON配置最近4小时
// 获取redis稳压泵缓存数据,默认JSON配置最近4小时
List
<
IotDataVO
>
redisDataList
=
pressurePumpService
.
getDataToRedis
(
PressurePumpRelateEnum
.
PRESSURE_PUMP
.
getValue
(),
pressurePumpStart
,
null
);
List
<
IotDataVO
>
redisDataList
=
pressurePumpService
.
getDataToRedis
(
PressurePumpRelateEnum
.
PRESSURE_PUMP
.
getValue
(),
pressurePumpStart
,
null
);
List
<
IotDataVO
>
redisDataPipeList
=
pressurePumpService
.
getDataToRedis
(
PressurePumpRelateEnum
.
PRESSURE_PUMP
.
getValue
(),
pressurePumpPipePressure
,
null
);
List
<
IotDataVO
>
redisDataPipeList
=
pressurePumpService
.
getDataToRedis
(
PressurePumpRelateEnum
.
PRESSURE_PUMP
.
getValue
(),
pressurePumpPipePressure
,
null
);
String
nowStrLong
=
DateUtils
.
getDateNowString
();
String
nowStrLong
=
DateUtils
.
getDateNowString
();
Date
dateNow
=
DateUtils
.
getDateNow
();
Date
dateNow
=
DateUtils
.
getDateNow
();
// 1. 判断稳压泵整体是否故障
// 1. 判断稳压泵整体是否故障
List
<
EquipmentSpecificAlarmLog
>
alarmLogList
=
equipmentSpecificAlarmLogService
.
getAlarmLogInfoList
(
equipmentCode
,
nameKeys
,
PressurePumpRelateEnum
.
IOT_INDEX_VALUE_TRUE
.
getValue
(),
PressurePumpRelateEnum
.
UN_CLEAN_TIME
.
getValue
(),
bizOrgCode
);
List
<
EquipmentSpecificAlarmLog
>
alarmLogList
=
equipmentSpecificAlarmLogService
.
getAlarmLogInfoList
(
equipmentCode
,
faultNameKey
,
PressurePumpRelateEnum
.
IOT_INDEX_VALUE_TRUE
.
getValue
(),
PressurePumpRelateEnum
.
UN_CLEAN_TIME
.
getValue
(),
bizOrgCode
);
list
.
get
(
0
).
put
(
"value"
,
CollectionUtils
.
isEmpty
(
alarmLogList
)
?
PressurePumpRelateEnum
.
NOT_FAULT
.
getValue
()
:
PressurePumpRelateEnum
.
FAULT
.
getValue
());
PressurePumpAnalysisEnum
.
PRESSURE_PUMP_FAULT
.
setValue
(
CollectionUtils
.
isEmpty
(
alarmLogList
)
?
PressurePumpRelateEnum
.
NOT_FAULT
.
getValue
()
:
PressurePumpRelateEnum
.
FAULT
.
getValue
());
long
interval
=
0
;
long
interval
=
0
;
long
duration
=
0
;
long
duration
=
0
;
double
pressureDiff
=
0.0
;
double
pressureDiff
=
0.0
;
...
@@ -275,23 +272,23 @@ public class EmergencyServiceImpl implements IEmergencyService {
...
@@ -275,23 +272,23 @@ public class EmergencyServiceImpl implements IEmergencyService {
}
}
}
}
// 2. 最近一次启停间隔
// 2. 最近一次启停间隔
list
.
get
(
1
).
put
(
"value"
,
interval
);
PressurePumpAnalysisEnum
.
PRESSURE_PUMP_INTERVAL
.
setValue
(
interval
);
// 3. 最近一次启动时长
// 3. 最近一次启动时长
list
.
get
(
2
).
put
(
"value"
,
duration
);
PressurePumpAnalysisEnum
.
PRESSURE_PUMP_DURATION
.
setValue
(
duration
);
// 4. 半小时启动
// 4. 半小时启动
int
halfFrequency
=
pressurePumpService
.
getAllPressurePumpStartFrequency
(
Double
.
parseDouble
(
PressurePumpRelateEnum
.
HALF_HOUR
.
getValue
()),
dateNow
);
int
halfFrequency
=
pressurePumpService
.
getAllPressurePumpStartFrequency
(
Double
.
parseDouble
(
PressurePumpRelateEnum
.
HALF_HOUR
.
getValue
()),
dateNow
);
list
.
get
(
3
).
put
(
"value"
,
halfFrequency
);
PressurePumpAnalysisEnum
.
PRESSURE_PUMP_HALF
.
setValue
(
halfFrequency
);
// 5. 2小时启动
// 5. 2小时启动
int
twoFrequency
=
pressurePumpService
.
getAllPressurePumpStartFrequency
(
Double
.
parseDouble
(
PressurePumpRelateEnum
.
TWO_HOUR
.
getValue
()),
dateNow
);
int
twoFrequency
=
pressurePumpService
.
getAllPressurePumpStartFrequency
(
Double
.
parseDouble
(
PressurePumpRelateEnum
.
TWO_HOUR
.
getValue
()),
dateNow
);
list
.
get
(
4
).
put
(
"value"
,
twoFrequency
);
PressurePumpAnalysisEnum
.
PRESSURE_PUMP_TWO
.
setValue
(
twoFrequency
);
// 6. 管网压力状态
// 6. 管网压力状态
list
.
get
(
5
).
put
(
"value"
,
pressureDiff
>
Double
.
parseDouble
(
PressurePumpRelateEnum
.
PIPE_PRESSURE_DIFF
.
getValue
())
?
PressurePumpRelateEnum
.
PIPE_PRESSURE_ABNORMAL_STATUS
.
getValue
()
:
PressurePumpRelateEnum
.
PIPE_PRESSURE_NORMAL_STATUS
.
getValue
());
PressurePumpAnalysisEnum
.
PRESSURE_PUMP_PIPE
.
setValue
(
pressureDiff
>
Double
.
parseDouble
(
PressurePumpRelateEnum
.
PIPE_PRESSURE_DIFF
.
getValue
())
?
PressurePumpRelateEnum
.
PIPE_PRESSURE_ABNORMAL_STATUS
.
getValue
()
:
PressurePumpRelateEnum
.
PIPE_PRESSURE_NORMAL_STATUS
.
getValue
());
}
}
return
list
;
return
PressurePumpAnalysisEnum
.
getList
()
;
}
}
@Override
@Override
public
Map
<
String
,
Object
>
getPressurePumpStatusChart
(
String
startTime
,
String
endTime
,
String
bizOrgCode
,
String
appKey
,
String
product
,
String
token
)
{
public
Map
<
String
,
Object
>
getPressurePumpStatusChart
(
String
startTime
,
String
endTime
,
String
bizOrgCode
)
{
Map
<
String
,
Object
>
map
=
new
LinkedHashMap
<>();
Map
<
String
,
Object
>
map
=
new
LinkedHashMap
<>();
try
{
try
{
// 从 json 配置文件获取配置信息
// 从 json 配置文件获取配置信息
...
...
amos-boot-system-equip/src/main/resources/json/nameKeyInfo.json
View file @
2c62d3f5
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
"name"
:
"稳压泵"
,
"name"
:
"稳压泵"
,
"code"
:
"PressurePump"
,
"code"
:
"PressurePump"
,
"nameKey"
:
"FHS_PressurePump_Start,FHS_PipePressureDetector_PipePressure"
,
"nameKey"
:
"FHS_PressurePump_Start,FHS_PipePressureDetector_PipePressure"
,
"faultNameKey"
:
"FHS_PressurePump_Fault,FHS_PressurePump_RunFault,FHS_PressurePump_OverLoadFault"
,
"expire"
:
14400
,
"expire"
:
14400
,
"equipmentCode"
:
"92010800KAL44"
,
"equipmentCode"
:
"92010800KAL44"
,
"top"
:
"100"
"top"
:
"100"
...
...
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