| | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Controller; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | |
| | | @ApiOperation(value = "新增或修改学习配置", tags = {"后台-学习"}) |
| | | @PostMapping(value = "/addStudySet") |
| | | @ResponseBody |
| | | public AjaxResult addStudySet(AddStudySetDTO dto) { |
| | | public AjaxResult addStudySet(@RequestBody AddStudySetDTO dto) { |
| | | studyClient.addStudySet(dto); |
| | | return AjaxResult.success("保存成功"); |
| | | } |