Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-zx-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
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
Jobs
Commits
Open sidebar
项目统一框架
一体化_户用光伏项目代码
amos-boot-zx-biz
Commits
dc902d65
Commit
dc902d65
authored
Sep 13, 2023
by
zhangsen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug修改
parent
8483c05b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
MonitorFanIndicatorImpl.java
...odule/jxiop/biz/service/impl/MonitorFanIndicatorImpl.java
+5
-5
No files found.
amos-boot-system-jxiop/amos-boot-module-jxiop-monitor-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/service/impl/MonitorFanIndicatorImpl.java
View file @
dc902d65
...
...
@@ -1610,20 +1610,20 @@ public class MonitorFanIndicatorImpl implements IMonitorFanIndicator {
indicatorsDtos
.
forEach
(
e
->
{
switch
(
e
.
getEquipmentIndexName
())
{
case
"总直流功率"
:
map
.
put
(
"sr"
,
keepTwoDecimalPlaces
(
e
.
getValue
()));
map
.
put
(
"sr"
,
keepTwoDecimalPlaces
(
e
.
getValue
Double
().
toString
()));
break
;
case
"有功功率"
:
map
.
put
(
"sc"
,
keepTwoDecimalPlaces
(
e
.
getValue
()));
map
.
put
(
"sc"
,
keepTwoDecimalPlaces
(
e
.
getValue
Double
().
toString
()));
break
;
case
"逆变器效率"
:
map
.
put
(
"efficiency"
,
keepTwoDecimalPlaces
(
e
.
getValue
()));
map
.
put
(
"efficiency"
,
keepTwoDecimalPlaces
(
e
.
getValue
Double
().
toString
()));
break
;
case
"日发电量"
:
double
v
=
Double
.
parseDouble
(
e
.
getValue
())
*
CommonConstans
.
pvGenPoweActor
;
double
v
=
Double
.
parseDouble
(
e
.
getValue
Double
().
toString
())
*
CommonConstans
.
pvGenPoweActor
;
map
.
put
(
"dayNum"
,
keepTwoDecimalPlaces
(
String
.
valueOf
(
v
)));
break
;
case
"总发电量"
:
double
a
=
Double
.
parseDouble
(
e
.
getValue
())
*
CommonConstans
.
pvGenPoweActor
;
double
a
=
Double
.
parseDouble
(
e
.
getValue
Double
().
toString
())
*
CommonConstans
.
pvGenPoweActor
;
map
.
put
(
"yearNum"
,
keepTwoDecimalPlaces
(
String
.
valueOf
(
a
)));
break
;
}
...
...
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