| | |
| | | import io.swagger.annotations.ApiResponse; |
| | | import io.swagger.annotations.ApiResponses; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | |
| | | return iColumnService.delObjs(adminDeleteDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "发布栏目", notes = "发布栏目") |
| | | @PostMapping(value = "/release") |
| | | public Result release(@RequestBody ReleaseColumnDto releaseColumnDto) { |
| | | return Result.ok("发布成功"); |
| | | } |
| | | |
| | | @ApiOperation(value = "网页栏目列表", notes = "网页栏目列表") |
| | | @ApiResponses({@ApiResponse(code = 200, message = "ok", response = WebColumnVo.class)}) |
| | | @GetMapping(value = "/webColumnInList") |