Commit a557101b by 丁伟峰

Merge branch 'feat-dingwf-mvp616' into develop

2 parents 2e5d5f5e 0451c17d
...@@ -19,7 +19,7 @@ public class WorkbenchController { ...@@ -19,7 +19,7 @@ public class WorkbenchController {
WorkbenchService workbenchService; WorkbenchService workbenchService;
@GetMapping("/workbench/serviceOrder/change/list") @GetMapping("/workbench/serviceOrder/change/list")
public Result<?> orderChangeList(@Validated @RequestBody WorkbenchOrderChangeListReqDTO reqDTO) { public Result<?> orderChangeList(@Validated WorkbenchOrderChangeListReqDTO reqDTO) {
Result<?> res = null; Result<?> res = null;
try { try {
res = workbenchService.getOrderChangeList(reqDTO); res = workbenchService.getOrderChangeList(reqDTO);
...@@ -30,7 +30,7 @@ public class WorkbenchController { ...@@ -30,7 +30,7 @@ public class WorkbenchController {
} }
@GetMapping("/workbench/engineer/schedule/gantt") @GetMapping("/workbench/engineer/schedule/gantt")
public Result<?> getEngineersGanttList(@Validated @RequestBody WorkbenchEngineersGanttReqDTO reqDTO) { public Result<?> getEngineersGanttList(@Validated WorkbenchEngineersGanttReqDTO reqDTO) {
log.info("getEngineersGanttList: {}", reqDTO); log.info("getEngineersGanttList: {}", reqDTO);
Result<?> res = null; Result<?> res = null;
try { try {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!