Commit 02ac9b99 by 丁伟峰

改成支持POST;同时保留原先的GET方式

1 parent 4ef192b5
......@@ -29,7 +29,7 @@ public class WorkbenchController {
return res;
}
@GetMapping("/engineer/schedule/gantt")
@RequestMapping(value = "/engineer/schedule/gantt", method = {RequestMethod.GET, RequestMethod.POST})
public Result<?> getEngineersGanttList(@Validated EngineersGanttReqDTO reqDTO) {
// todo 待移到 controller的engineer中
log.info("getEngineersGanttList: {}", reqDTO);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!