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
851ccb12
Commit
851ccb12
authored
Jul 26, 2024
by
lilongyang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'developer' of
http://36.40.66.175:5000/moa/jxdj_zx/amos-boot-zx-biz
into developer
parents
94b5d4be
e293c256
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
10 deletions
+10
-10
IdxBizPvWeightController.java
...module/jxiop/biz/controller/IdxBizPvWeightController.java
+2
-2
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-analyse-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/controller/IdxBizPvWeightController.java
View file @
851ccb12
...
@@ -92,10 +92,10 @@ public class IdxBizPvWeightController extends BaseController {
...
@@ -92,10 +92,10 @@ public class IdxBizPvWeightController extends BaseController {
e
.
setType
(
"场站"
);
e
.
setType
(
"场站"
);
break
;
break
;
case
"3"
:
case
"3"
:
e
.
setType
(
"
设备
"
);
e
.
setType
(
"
子阵
"
);
break
;
break
;
case
"4"
:
case
"4"
:
e
.
setType
(
"
子阵
"
);
e
.
setType
(
"
设备
"
);
break
;
break
;
case
"5"
:
case
"5"
:
e
.
setType
(
"变量"
);
e
.
setType
(
"变量"
);
...
...
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 @
851ccb12
...
@@ -93,8 +93,8 @@ public class FDZSBJCServiceImpl implements IJXDZService {
...
@@ -93,8 +93,8 @@ public class FDZSBJCServiceImpl implements IJXDZService {
windDeviceDataVO
.
setGenerationMonth
(
result
.
getDouble
(
"value"
));
windDeviceDataVO
.
setGenerationMonth
(
result
.
getDouble
(
"value"
));
}
}
if
(
"年发电量"
.
equals
(
pointName
))
{
if
(
"年发电量"
.
equals
(
pointName
))
{
windDeviceDataVO
.
setGenerationYear
(
result
.
getDouble
(
"value"
));
windDeviceDataVO
.
setGenerationYear
(
result
.
getDouble
(
"value"
)
/
10000
);
windDeviceDataVO
.
setGenerationGross
(
result
.
getDouble
(
"value"
));
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 @
851ccb12
...
@@ -97,10 +97,10 @@ public class GFDZSBJCServiceImpl implements IJXDZService {
...
@@ -97,10 +97,10 @@ public class GFDZSBJCServiceImpl implements IJXDZService {
pvDeviceDataVO
.
setGenerationMonth
(
result
.
getDouble
(
"value"
));
pvDeviceDataVO
.
setGenerationMonth
(
result
.
getDouble
(
"value"
));
}
}
if
(
pointName
.
contains
(
"年发电量"
))
{
if
(
pointName
.
contains
(
"年发电量"
))
{
pvDeviceDataVO
.
setGenerationYear
(
result
.
getDouble
(
"value"
));
pvDeviceDataVO
.
setGenerationYear
(
result
.
getDouble
(
"value"
)
/
10000
);
}
}
if
(
pointName
.
contains
(
"总发电量"
))
{
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 @
851ccb12
...
@@ -57,10 +57,10 @@ public class JXDZExecute {
...
@@ -57,10 +57,10 @@ public class JXDZExecute {
fdzsbjcService
.
backupData
(
windDeviceDataVOList
,
needDataVO
.
getDateTime
());
fdzsbjcService
.
backupData
(
windDeviceDataVOList
,
needDataVO
.
getDateTime
());
gfdzsbjcService
.
backupData
(
pvDeviceDataVOList
,
needDataVO
.
getDateTime
());
gfdzsbjcService
.
backupData
(
pvDeviceDataVOList
,
needDataVO
.
getDateTime
());
//发送请求
//发送请求
//
fdzjcService.sendData(JXDZAccessTypeEnum.CAIJI.getCode(), needDataVO, windStationDataVOList);
fdzjcService
.
sendData
(
JXDZAccessTypeEnum
.
CAIJI
.
getCode
(),
needDataVO
,
windStationDataVOList
);
//
gfdzjcService.sendData(JXDZAccessTypeEnum.CAIJI.getCode(), needDataVO, pvStationDataVOList);
gfdzjcService
.
sendData
(
JXDZAccessTypeEnum
.
CAIJI
.
getCode
(),
needDataVO
,
pvStationDataVOList
);
//
fdzsbjcService.sendData(JXDZAccessTypeEnum.CAIJI.getCode(), needDataVO, windDeviceDataVOList);
fdzsbjcService
.
sendData
(
JXDZAccessTypeEnum
.
CAIJI
.
getCode
(),
needDataVO
,
windDeviceDataVOList
);
//
gfdzsbjcService.sendData(JXDZAccessTypeEnum.CAIJI.getCode(), needDataVO, pvDeviceDataVOList);
gfdzsbjcService
.
sendData
(
JXDZAccessTypeEnum
.
CAIJI
.
getCode
(),
needDataVO
,
pvDeviceDataVOList
);
log
.
info
(
"小时任务执行成功"
);
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