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
5ba6c06d
Commit
5ba6c06d
authored
Oct 08, 2023
by
caotao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
运行监盘-上下数据不同步问题修改处理
parent
556ddc02
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
16 deletions
+24
-16
MonitoringMapController.java
.../module/jxiop/biz/controller/MonitoringMapController.java
+0
-0
MonitoringServiceImpl.java
.../module/jxiop/biz/service/impl/MonitoringServiceImpl.java
+24
-16
No files found.
amos-boot-system-jxiop/amos-boot-module-jxiop-monitor-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/controller/MonitoringMapController.java
View file @
5ba6c06d
This diff is collapsed.
Click to expand it.
amos-boot-system-jxiop/amos-boot-module-jxiop-monitor-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/service/impl/MonitoringServiceImpl.java
View file @
5ba6c06d
...
...
@@ -20,6 +20,7 @@ import org.slf4j.Logger;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.scheduling.annotation.Scheduled
;
import
org.springframework.stereotype.Service
;
import
org.springframework.util.ObjectUtils
;
import
org.typroject.tyboot.component.emq.EmqKeeper
;
...
...
@@ -169,7 +170,7 @@ public class MonitoringServiceImpl {
return
regionNationWideDtoList
;
}
// @Scheduled(cron = "0/60 * * * * ? ")
public
ResultsData
getCompletionOfPowerIndicatorsByProvinceName
(
int
current
,
int
size
,
String
provinceName
)
{
List
<
ColModel
>
colModels
=
new
ArrayList
<>();
...
...
@@ -190,6 +191,11 @@ public class MonitoringServiceImpl {
colModels
.
add
(
colModelAnnualPower
);
List
<
StationCacheInfoDto
>
stationCacheInfoDtoList
=
commonServiceImpl
.
getListStationCacheInfoDto
();
List
<
StationCacheInfoDto
>
stationCacheInfoDtos
=
stationCacheInfoDtoList
.
stream
().
filter
(
stationCacheInfoDto
->
stationCacheInfoDto
.
getBelongProvince
().
equals
(
provinceName
)).
collect
(
Collectors
.
toList
());
if
(
ObjectUtils
.
isEmpty
(
stationCacheInfoDtos
)){
DataGridMock
dataGridMock
=
new
DataGridMock
(
current
,
0
,
false
,
1
,
null
);
ResultsData
resultsData
=
new
ResultsData
(
dataGridMock
,
colModels
);
return
resultsData
;
}
//日发电量
AtomicReference
<
Double
>
dailyPower
=
new
AtomicReference
<>(
0.0
);
//月发电量
...
...
@@ -199,12 +205,14 @@ public class MonitoringServiceImpl {
//年发电量完成比例
String
completionRatio
=
"0.00"
;
//年利用小时数
List
<
StationPlan
>
fdzPlans
=
new
ArrayList
<>();
int
year
=
Calendar
.
getInstance
().
get
(
Calendar
.
YEAR
);
List
<
String
>
fdz
=
stationCacheInfoDtos
.
stream
().
map
(
StationCacheInfoDto:
:
getStationId
).
collect
(
Collectors
.
toList
());
LambdaQueryWrapper
<
StationPlan
>
queryWrapper
=
new
LambdaQueryWrapper
<>();
queryWrapper
.
eq
(
StationPlan:
:
getYear
,
String
.
valueOf
(
year
));
queryWrapper
.
in
(
StationPlan:
:
getStationBasicId
,
fdz
);
List
<
StationPlan
>
fdzPlans
=
stationPlanMapper
.
selectList
(
queryWrapper
);
fdzPlans
=
stationPlanMapper
.
selectList
(
queryWrapper
);
double
value
=
fdzPlans
.
stream
().
mapToDouble
(
StationPlan:
:
getValue
).
sum
();
AtomicReference
<
Double
>
useHours
=
new
AtomicReference
<>(
0.0
);
...
...
@@ -298,18 +306,20 @@ public class MonitoringServiceImpl {
socialContributionDtoPage
.
setRecords
(
socialContributionDtoList
);
socialContributionDtoPage
.
setTotal
(
100
);
socialContributionDtoPage
.
setCurrent
(
1
);
Integer
allsize
=
completionOfPowerIndicatorsDtoList
.
size
();
DataGridMock
dataGridMock
=
new
DataGridMock
(
current
,
allsize
,
false
,
allsize
/
size
+
1
,
completionOfPowerIndicatorsDtoList
);
ResultsData
resultsData
=
new
ResultsData
(
dataGridMock
,
colModels
);
try
{
emqKeeper
.
getMqttClient
().
publish
(
"completion_of_powerindicator_topic"
,
JSON
.
toJSON
(
socialContributionDtoPage
).
toString
().
getBytes
(
"UTF-8"
),
1
,
true
);
emqKeeper
.
getMqttClient
().
publish
(
provinceName
+
"_completion_of_powerindicator_list_topic"
,
JSON
.
toJSON
(
resultsData
).
toString
().
getBytes
(
"UTF-8"
),
1
,
true
);
emqKeeper
.
getMqttClient
().
publish
(
provinceName
+
"_completion_of_powerindicator_topic"
,
JSON
.
toJSON
(
socialContributionDtoPage
).
toString
().
getBytes
(
"UTF-8"
),
1
,
true
);
logger
.
info
(
"-----------------发送区域实时生产数据消息=================== 成功!"
+
JSON
.
toJSONString
(
socialContributionDtoPage
));
}
catch
(
Exception
exception
)
{
logger
.
error
(
"-----------------发送区域实时生产数据消息=================== 失败!"
);
}
Integer
allsize
=
completionOfPowerIndicatorsDtoList
.
size
();
DataGridMock
dataGridMock
=
new
DataGridMock
(
current
,
allsize
,
false
,
allsize
/
size
+
1
,
completionOfPowerIndicatorsDtoList
);
ResultsData
resultsData
=
new
ResultsData
(
dataGridMock
,
colModels
);
return
resultsData
;
}
public
void
getCompletionOfPowerIndicatorsByCurrentData
(
List
<
StationCacheInfoDto
>
stationBasicList
,
String
provinceName
)
{
String
provinceNameTopic
=
""
;
if
(
provinceName
.
contains
(
"黑龙江"
)
||
provinceName
.
contains
(
"内蒙古"
))
{
...
...
@@ -320,7 +330,7 @@ public class MonitoringServiceImpl {
HashMap
<
String
,
String
>
stringHashMap
=
new
HashMap
<>();
stringHashMap
.
put
(
"title"
,
provinceNameTopic
+
"区域"
);
try
{
emqKeeper
.
getMqttClient
().
publish
(
"
proviceName_topic"
,
JSON
.
toJSON
(
stringHashMap
).
toString
().
getBytes
(
"UTF-8"
),
1
,
true
);
emqKeeper
.
getMqttClient
().
publish
(
provinceName
+
"_
proviceName_topic"
,
JSON
.
toJSON
(
stringHashMap
).
toString
().
getBytes
(
"UTF-8"
),
1
,
true
);
logger
.
info
(
"----------------------------------推送省份名称消息成功败--------------------------------"
);
}
catch
(
Exception
e
)
{
logger
.
info
(
"----------------------------------推送省份名称消息失败--------------------------------"
);
...
...
@@ -529,7 +539,6 @@ public class MonitoringServiceImpl {
homeMapStationInfoDto
.
setCurrentPower
(
String
.
format
(
CommonConstans
.
Twodecimalplaces
,
commonServiceImpl
.
getSumByEquipmentIndxName
(
esEquipmentsList
,
"220kV夏雩线212线路测控装置PCS-9705TA有功功率一次值"
)));
}
else
{
// Map<String, List<String>> queryCondtion = new HashMap<>();
// queryCondtion.put(CommonConstans.QueryStringEquipmentIndexName, Arrays.asList("有功功率"));
...
...
@@ -547,7 +556,7 @@ public class MonitoringServiceImpl {
List
<
ESEquipments
>
esEquipmentsList
=
commonServiceImpl
.
getListDataByCondtions
(
queryCondtion2
,
null
,
ESEquipments
.
class
);
homeMapStationInfoDto
.
setCurrentPower
(
String
.
format
(
CommonConstans
.
Twodecimalplaces
,
commonServiceImpl
.
getSumByEquipmentIndxName
(
esEquipmentsList
,
"南瑞光差保护_313P"
)));
Map
<
String
,
List
<
String
>>
queryCondtion1
=
new
HashMap
<>();
queryCondtion1
.
put
(
CommonConstans
.
QueryStringEquipmentIndexName
,
Arrays
.
asList
(
"WTX-801_25_WTX-801_总辐射"
));
queryCondtion1
.
put
(
CommonConstans
.
QueryStringGateWayId
,
Arrays
.
asList
(
stationBasic
.
getBoosterGatewayId
()));
...
...
@@ -882,15 +891,14 @@ public class MonitoringServiceImpl {
Map
<
String
,
String
>
shouldQueryCondtion
=
new
HashMap
<>();
shouldQueryCondtion
.
put
(
CommonConstans
.
QueryStringFrontMoudle
,
"逆变器"
);
List
<
ESEquipments
>
result
=
commonServiceImpl
.
getListDataByCondtions
(
queryCondtion
,
null
,
ESEquipments
.
class
,
shouldQueryCondtion
);
// total = commonServiceImpl.getSumByEquipmentIndxName(result, finalIndicator) * CommonConstans.pvGenPoweActor * CommonConstans.pvGenPoweActorDay;
if
(
finalIndicator
.
equals
(
"日发电量"
))
{
// total = commonServiceImpl.getSumByEquipmentIndxName(result, finalIndicator) * CommonConstans.pvGenPoweActor * CommonConstans.pvGenPoweActorDay;
if
(
finalIndicator
.
equals
(
"日发电量"
))
{
total
=
commonServiceImpl
.
getSumByEquipmentIndxName
(
result
,
finalIndicator
)
*
CommonConstans
.
pvGenPoweActor
*
CommonConstans
.
pvGenPoweActorDay
;
}
else
{
total
=
commonServiceImpl
.
getSumByEquipmentIndxName
(
result
,
finalIndicator
)
*
CommonConstans
.
pvGenPoweActor
;
}
else
{
total
=
commonServiceImpl
.
getSumByEquipmentIndxName
(
result
,
finalIndicator
)
*
CommonConstans
.
pvGenPoweActor
;
}
}
else
{
Map
<
String
,
List
<
String
>>
queryCondtion
=
new
HashMap
<>();
queryCondtion
.
put
(
CommonConstans
.
QueryStringEquipmentIndexName
,
Arrays
.
asList
(
finalIndicator
));
...
...
@@ -1310,13 +1318,13 @@ public class MonitoringServiceImpl {
}
stationBasicListAll
.
forEach
(
stationBasic
->
{
if
(
stationBasic
.
getStationType
().
equals
(
"FDZ"
))
{
if
(
stationBasic
.
getStationType
().
equals
(
"FDZ"
))
{
queryCondtion
.
put
(
CommonConstans
.
QueryStringGateWayId
,
Arrays
.
asList
(
stationBasic
.
getBoosterGatewayId
()));
queryCondtion
.
put
(
CommonConstans
.
QueryStringEquipmentIndexName
,
Arrays
.
asList
(
"220kV夏雩线212线路测控装置PCS-9705TA有功功率一次值"
));
List
<
ESEquipments
>
esEquipmentsList
=
commonServiceImpl
.
getListDataByCondtions
(
queryCondtion
,
null
,
ESEquipments
.
class
);
total
.
updateAndGet
(
v
->
v
+
commonServiceImpl
.
getSumByEquipmentIndxName
(
esEquipmentsList
,
"220kV夏雩线212线路测控装置PCS-9705TA有功功率一次值"
));
}
else
{
}
else
{
queryCondtion1
.
put
(
CommonConstans
.
QueryStringGateWayId
,
Arrays
.
asList
(
stationBasic
.
getBoosterGatewayId
()));
queryCondtion1
.
put
(
CommonConstans
.
QueryStringEquipmentIndexName
,
Arrays
.
asList
(
"南瑞光差保护_313P"
));
List
<
ESEquipments
>
esEquipmentsList
=
commonServiceImpl
.
getListDataByCondtions
(
queryCondtion1
,
null
,
ESEquipments
.
class
);
...
...
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