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
7cbfc658
Commit
7cbfc658
authored
Jul 26, 2024
by
hezhuozhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NGN修改单位
parent
d1eac0ba
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
FDZSBJCServiceImpl.java
...oot/module/jxiop/biz/jxdz/factory/FDZSBJCServiceImpl.java
+2
-2
GFDZSBJCServiceImpl.java
...ot/module/jxiop/biz/jxdz/factory/GFDZSBJCServiceImpl.java
+2
-2
JXDZExecute.java
.../amos/boot/module/jxiop/biz/jxdz/factory/JXDZExecute.java
+4
-4
No files found.
amos-boot-system-jxiop/amos-boot-module-jxiop-monitor-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/jxdz/factory/FDZSBJCServiceImpl.java
View file @
7cbfc658
...
...
@@ -93,8 +93,8 @@ public class FDZSBJCServiceImpl implements IJXDZService {
windDeviceDataVO
.
setGenerationMonth
(
result
.
getDouble
(
"value"
));
}
if
(
"年发电量"
.
equals
(
pointName
))
{
windDeviceDataVO
.
setGenerationYear
(
result
.
getDouble
(
"value"
));
windDeviceDataVO
.
setGenerationGross
(
result
.
getDouble
(
"value"
));
windDeviceDataVO
.
setGenerationYear
(
result
.
getDouble
(
"value"
)
/
10000
);
windDeviceDataVO
.
setGenerationGross
(
result
.
getDouble
(
"value"
)
/
10000
);
}
}
}
...
...
amos-boot-system-jxiop/amos-boot-module-jxiop-monitor-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/jxdz/factory/GFDZSBJCServiceImpl.java
View file @
7cbfc658
...
...
@@ -97,10 +97,10 @@ public class GFDZSBJCServiceImpl implements IJXDZService {
pvDeviceDataVO
.
setGenerationMonth
(
result
.
getDouble
(
"value"
));
}
if
(
pointName
.
contains
(
"年发电量"
))
{
pvDeviceDataVO
.
setGenerationYear
(
result
.
getDouble
(
"value"
));
pvDeviceDataVO
.
setGenerationYear
(
result
.
getDouble
(
"value"
)
/
10000
);
}
if
(
pointName
.
contains
(
"总发电量"
))
{
pvDeviceDataVO
.
setGenerationGross
(
result
.
getDouble
(
"value"
));
pvDeviceDataVO
.
setGenerationGross
(
result
.
getDouble
(
"value"
)
/
10000
);
}
}
}
...
...
amos-boot-system-jxiop/amos-boot-module-jxiop-monitor-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/jxdz/factory/JXDZExecute.java
View file @
7cbfc658
...
...
@@ -57,10 +57,10 @@ public class JXDZExecute {
fdzsbjcService
.
backupData
(
windDeviceDataVOList
,
needDataVO
.
getDateTime
());
gfdzsbjcService
.
backupData
(
pvDeviceDataVOList
,
needDataVO
.
getDateTime
());
//发送请求
//
fdzjcService.sendData(JXDZAccessTypeEnum.CAIJI.getCode(), needDataVO, windStationDataVOList);
//
gfdzjcService.sendData(JXDZAccessTypeEnum.CAIJI.getCode(), needDataVO, pvStationDataVOList);
//
fdzsbjcService.sendData(JXDZAccessTypeEnum.CAIJI.getCode(), needDataVO, windDeviceDataVOList);
//
gfdzsbjcService.sendData(JXDZAccessTypeEnum.CAIJI.getCode(), needDataVO, pvDeviceDataVOList);
fdzjcService
.
sendData
(
JXDZAccessTypeEnum
.
CAIJI
.
getCode
(),
needDataVO
,
windStationDataVOList
);
gfdzjcService
.
sendData
(
JXDZAccessTypeEnum
.
CAIJI
.
getCode
(),
needDataVO
,
pvStationDataVOList
);
fdzsbjcService
.
sendData
(
JXDZAccessTypeEnum
.
CAIJI
.
getCode
(),
needDataVO
,
windDeviceDataVOList
);
gfdzsbjcService
.
sendData
(
JXDZAccessTypeEnum
.
CAIJI
.
getCode
(),
needDataVO
,
pvDeviceDataVOList
);
log
.
info
(
"小时任务执行成功"
);
}
...
...
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