Commit a557101b by 丁伟峰

Merge branch 'feat-dingwf-mvp616' into develop

2 parents 2e5d5f5e 0451c17d
......@@ -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 {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!