Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
HYH.APSJ
Project
Project
Details
Activity
Releases
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
佟礼
HYH.APSJ
Commits
503590db
Commit
503590db
authored
Mar 25, 2026
by
DESKTOP-VKRD9QF\Administration
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
聚焦甘特修改
parent
513fcbc7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
22 deletions
+45
-22
ResourceGanttController.java
...ava/com/aps/controller/gantt/ResourceGanttController.java
+2
-2
PlanResultService.java
src/main/java/com/aps/service/plan/PlanResultService.java
+43
-20
No files found.
src/main/java/com/aps/controller/gantt/ResourceGanttController.java
View file @
503590db
...
@@ -1027,7 +1027,7 @@ public class ResourceGanttController {
...
@@ -1027,7 +1027,7 @@ public class ResourceGanttController {
)
)
)
)
public
R
<
SupplyRelationResponse
>
getSupplyRelation
(
@RequestBody
Map
<
String
,
Object
>
params
)
{
public
R
<
List
<
Object
>
>
getSupplyRelation
(
@RequestBody
Map
<
String
,
Object
>
params
)
{
log
.
info
(
"getSupplyRelation 请求参数: {}"
,
params
);
log
.
info
(
"getSupplyRelation 请求参数: {}"
,
params
);
// 提取参数
// 提取参数
String
sceneId
=
ParamValidator
.
getString
(
params
,
"sceneId"
,
"场景ID"
);
String
sceneId
=
ParamValidator
.
getString
(
params
,
"sceneId"
,
"场景ID"
);
...
@@ -1036,7 +1036,7 @@ public class ResourceGanttController {
...
@@ -1036,7 +1036,7 @@ public class ResourceGanttController {
// 调用服务获取供给关系
// 调用服务获取供给关系
List
<
Object
>
data
=
planResultService
.
getSupplyRelation
(
sceneId
,
entryId
,
sceneService
);
List
<
Object
>
data
=
planResultService
.
getSupplyRelation
(
sceneId
,
entryId
,
sceneService
);
return
R
.
ok
(
SupplyRelationResponse
.
success
(
data
)
);
return
R
.
ok
(
data
);
}
}
...
...
src/main/java/com/aps/service/plan/PlanResultService.java
View file @
503590db
This diff is collapsed.
Click to expand it.
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