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
bee8e7e4
Commit
bee8e7e4
authored
Mar 26, 2024
by
tangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改采集bug
parent
15c6197e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
GoLangDataAcquisitionServiceImpl.java
...i/face/service/impl/GoLangDataAcquisitionServiceImpl.java
+4
-4
No files found.
amos-boot-data/amos-boot-data-housepvapi/src/main/java/com/yeejoin/amos/api/householdapi/face/service/impl/GoLangDataAcquisitionServiceImpl.java
View file @
bee8e7e4
...
@@ -193,10 +193,10 @@ public class GoLangDataAcquisitionServiceImpl implements GoLangDataAcquisitionSe
...
@@ -193,10 +193,10 @@ public class GoLangDataAcquisitionServiceImpl implements GoLangDataAcquisitionSe
jpStation
.
setCumulativeIncome
(
golangStationDetail
.
getAllincome
());
jpStation
.
setCumulativeIncome
(
golangStationDetail
.
getAllincome
());
jpStation
.
setArea
(
golangStationDetail
.
getRegionstr
());
jpStation
.
setArea
(
golangStationDetail
.
getRegionstr
());
jpStation
.
setEmail
(
golangStationDetail
.
getUseremail
());
jpStation
.
setEmail
(
golangStationDetail
.
getUseremail
());
jpStation
.
setOnGridTime
(
new
Date
(
golangStationDetail
.
getFispowertime
())
);
jpStation
.
setOnGridTime
(
golangStationDetail
.
getFispowertime
()!=
null
?
new
Date
(
golangStationDetail
.
getFispowertime
()):
null
);
jpStation
.
setAccessTime
(
new
Date
(
golangStationDetail
.
getFisgeneratetime
())
);
jpStation
.
setAccessTime
(
golangStationDetail
.
getFisgeneratetime
()!=
null
?
new
Date
(
golangStationDetail
.
getFisgeneratetime
()):
null
);
jpStation
.
setCreateTime
(
new
Date
(
golangStationDetail
.
getCreatedate
())
);
jpStation
.
setCreateTime
(
golangStationDetail
.
getCreatedate
()!=
null
?
new
Date
(
golangStationDetail
.
getCreatedate
()):
null
);
jpStation
.
setRatedPower
(
Double
.
valueOf
(
golangStationDetail
.
getInverterpower
())
);
jpStation
.
setRatedPower
(
golangStationDetail
.
getInverterpower
()!=
null
?
Double
.
valueOf
(
golangStationDetail
.
getInverterpower
()):
null
);
jpStation
.
setType
(
"家庭户用"
);
jpStation
.
setType
(
"家庭户用"
);
jpStation
.
setRecDate
(
new
Date
());
jpStation
.
setRecDate
(
new
Date
());
if
(!
ObjectUtils
.
isEmpty
(
jpStation
.
getSequenceNbr
()))
{
if
(!
ObjectUtils
.
isEmpty
(
jpStation
.
getSequenceNbr
()))
{
...
...
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