Commit 5a35fea6 by 丁伟峰

Merge branch 'feat-dingwf-mvp616' into develop

2 parents 79234ed1 34297fe1
...@@ -8,10 +8,7 @@ import com.alibaba.cloud.integration.order.service.WorkbenchService; ...@@ -8,10 +8,7 @@ import com.alibaba.cloud.integration.order.service.WorkbenchService;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@Slf4j @Slf4j
@RestController @RestController
...@@ -32,7 +29,7 @@ public class WorkbenchController { ...@@ -32,7 +29,7 @@ public class WorkbenchController {
return res; return res;
} }
@PostMapping("/workbench/engineer/schedule/gantt") @GetMapping("/workbench/engineer/schedule/gantt")
public Result<?> getEngineersGanttList(@Validated @RequestBody WorkbenchEngineersGanttReqDTO reqDTO) { public Result<?> getEngineersGanttList(@Validated @RequestBody WorkbenchEngineersGanttReqDTO 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!