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
871d405d
Commit
871d405d
authored
Jul 11, 2025
by
wujiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交代码
parent
23c8954d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1 deletion
+4
-1
WebConstuctionDataBaseInfo.java
.../boot/module/hygf/api/dto/WebConstuctionDataBaseInfo.java
+2
-0
WorkOrderController.java
.../boot/module/hygf/biz/controller/WorkOrderController.java
+0
-1
WorkOrderServiceImpl.java
...ot/module/hygf/biz/service/impl/WorkOrderServiceImpl.java
+2
-0
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/dto/WebConstuctionDataBaseInfo.java
View file @
871d405d
...
...
@@ -21,6 +21,8 @@ public class WebConstuctionDataBaseInfo {
private
Long
workOrderId
;
private
Long
workOrderPowerStationId
;
private
String
constructionStatus
;
/**
* 安装人员信息
*/
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/controller/WorkOrderController.java
View file @
871d405d
...
...
@@ -509,7 +509,6 @@ public class WorkOrderController extends BaseController {
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"施工信息添加或者修改"
,
notes
=
"施工信息添加或者修改"
)
public
ResponseModel
<
WebConstuctionData
>
getWebConstuctionData
(
HttpServletRequest
request
,
@RequestParam
(
value
=
"sequenceNbr"
)
Long
sequenceNbr
)
{
return
ResponseHelper
.
buildResponse
(
workOrderServiceImpl
.
getWebConstuctionData
(
sequenceNbr
));
}
}
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/WorkOrderServiceImpl.java
View file @
871d405d
...
...
@@ -1979,6 +1979,7 @@ public class WorkOrderServiceImpl extends BaseService<WorkOrderDto, WorkOrder, W
powerStationConstructionData
.
setConstructionInverterInfo
(
webConstuctionData
.
getWebConstuctionDataBaseInfo
().
getConstructionInverterInfo
());
powerStationConstructionData
.
setConstructionCollectorBoxInfo
(
webConstuctionData
.
getWebConstuctionDataBaseInfo
().
getConstructionCollectorBoxInfo
());
powerStationConstructionData
.
setConstructionGridBoxInfo
(
webConstuctionData
.
getWebConstuctionDataBaseInfo
().
getConstructionGridBoxInfo
());
powerStationConstructionData
.
setConstructionStatus
(
webConstuctionData
.
getWebConstuctionDataBaseInfo
().
getConstructionStatus
());
this
.
addOrUpdate
(
powerStationConstructionData
);
return
webConstuctionData
;
}
...
...
@@ -2036,6 +2037,7 @@ public class WorkOrderServiceImpl extends BaseService<WorkOrderDto, WorkOrder, W
webConstuctionData
.
getWebConstuctionDataBaseInfo
().
setConstructionInverterInfo
(
powerStationConstructionData
.
getConstructionInverterInfo
());
webConstuctionData
.
getWebConstuctionDataBaseInfo
().
setConstructionCollectorBoxInfo
(
powerStationConstructionData
.
getConstructionCollectorBoxInfo
());
webConstuctionData
.
getWebConstuctionDataBaseInfo
().
setConstructionGridBoxInfo
(
powerStationConstructionData
.
getConstructionGridBoxInfo
());
webConstuctionData
.
getWebConstuctionDataBaseInfo
().
setConstructionStatus
(
powerStationConstructionData
.
getConstructionStatus
());
}
}
return
webConstuctionData
;
...
...
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