Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 0451c17d
authored
Jun 12, 2023
by
丁伟峰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
不是RequestBody模式
1 parent
6c4f1a48
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
project-order/src/main/java/com/alibaba/cloud/integration/order/controller/WorkbenchController.java
project-order/src/main/java/com/alibaba/cloud/integration/order/controller/WorkbenchController.java
View file @
0451c17
...
...
@@ -19,7 +19,7 @@ public class WorkbenchController {
WorkbenchService
workbenchService
;
@GetMapping
(
"/workbench/serviceOrder/change/list"
)
public
Result
<?>
orderChangeList
(
@Validated
@RequestBody
WorkbenchOrderChangeListReqDTO
reqDTO
)
{
public
Result
<?>
orderChangeList
(
@Validated
WorkbenchOrderChangeListReqDTO
reqDTO
)
{
Result
<?>
res
=
null
;
try
{
res
=
workbenchService
.
getOrderChangeList
(
reqDTO
);
...
...
@@ -30,7 +30,7 @@ public class WorkbenchController {
}
@GetMapping
(
"/workbench/engineer/schedule/gantt"
)
public
Result
<?>
getEngineersGanttList
(
@Validated
@RequestBody
WorkbenchEngineersGanttReqDTO
reqDTO
)
{
public
Result
<?>
getEngineersGanttList
(
@Validated
WorkbenchEngineersGanttReqDTO
reqDTO
)
{
log
.
info
(
"getEngineersGanttList: {}"
,
reqDTO
);
Result
<?>
res
=
null
;
try
{
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment