|
|
@@ -0,0 +1,132 @@
|
|
|
+/*
|
|
|
+ * Copyright [2022] [https://www.xiaonuo.vip]
|
|
|
+ *
|
|
|
+ * Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
|
|
|
+ *
|
|
|
+ * 1.请不要删除和修改根目录下的LICENSE文件。
|
|
|
+ * 2.请不要删除和修改Snowy源码头部的版权声明。
|
|
|
+ * 3.本项目代码可免费商业使用,商业使用请保留源码和相关描述文件的项目出处,作者声明等。
|
|
|
+ * 4.分发源码时候,请注明软件出处 https://www.xiaonuo.vip
|
|
|
+ * 5.不可二次分发开源参与同类竞品,如有想法可联系团队xiaonuobase@qq.com商议合作。
|
|
|
+ * 6.若您的项目无法满足以上几点,需要更多功能代码,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip
|
|
|
+ */
|
|
|
+package vip.xiaonuo.disk.controller;
|
|
|
+
|
|
|
+import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
+import com.github.xiaoymin.knife4j.annotations.ApiSupport;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.validation.annotation.Validated;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+import vip.xiaonuo.common.annotation.CommonLog;
|
|
|
+import vip.xiaonuo.common.pojo.CommonResult;
|
|
|
+import vip.xiaonuo.common.pojo.CommonValidList;
|
|
|
+import vip.xiaonuo.disk.domain.Chapter;
|
|
|
+import vip.xiaonuo.disk.param.ChapterAddParam;
|
|
|
+import vip.xiaonuo.disk.param.ChapterEditParam;
|
|
|
+import vip.xiaonuo.disk.param.ChapterIdParam;
|
|
|
+import vip.xiaonuo.disk.param.ChapterPageParam;
|
|
|
+import vip.xiaonuo.disk.service.ChapterService;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+import javax.validation.Valid;
|
|
|
+import javax.validation.constraints.NotEmpty;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 课程章节表控制器
|
|
|
+ *
|
|
|
+ * @author pans
|
|
|
+ * @date 2025/07/02 15:34
|
|
|
+ */
|
|
|
+@Api(tags = "课程章节表控制器")
|
|
|
+@ApiSupport(author = "SNOWY_TEAM", order = 1)
|
|
|
+@RestController
|
|
|
+@Validated
|
|
|
+public class ChapterController {
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private ChapterService chapterService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取课程章节表分页
|
|
|
+ *
|
|
|
+ * @author pans
|
|
|
+ * @date 2025/07/02 15:34
|
|
|
+ */
|
|
|
+ @ApiOperationSupport(order = 1)
|
|
|
+ @ApiOperation("获取课程章节表分页")
|
|
|
+ @SaCheckPermission("/disk/chapter/page")
|
|
|
+ @GetMapping("/disk/chapter/page")
|
|
|
+ public CommonResult<Page<Chapter>> page(ChapterPageParam chapterPageParam) {
|
|
|
+ return CommonResult.data(chapterService.page(chapterPageParam));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 添加课程章节表
|
|
|
+ *
|
|
|
+ * @author pans
|
|
|
+ * @date 2025/07/02 15:34
|
|
|
+ */
|
|
|
+ @ApiOperationSupport(order = 2)
|
|
|
+ @ApiOperation("添加课程章节表")
|
|
|
+ @CommonLog("添加课程章节表")
|
|
|
+ @SaCheckPermission("/disk/chapter/add")
|
|
|
+ @PostMapping("/disk/chapter/add")
|
|
|
+ public CommonResult<String> add(@RequestBody @Valid ChapterAddParam chapterAddParam) {
|
|
|
+ chapterService.add(chapterAddParam);
|
|
|
+ return CommonResult.ok();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 编辑课程章节表
|
|
|
+ *
|
|
|
+ * @author pans
|
|
|
+ * @date 2025/07/02 15:34
|
|
|
+ */
|
|
|
+ @ApiOperationSupport(order = 3)
|
|
|
+ @ApiOperation("编辑课程章节表")
|
|
|
+ @CommonLog("编辑课程章节表")
|
|
|
+ @SaCheckPermission("/disk/chapter/edit")
|
|
|
+ @PostMapping("/disk/chapter/edit")
|
|
|
+ public CommonResult<String> edit(@RequestBody @Valid ChapterEditParam chapterEditParam) {
|
|
|
+ chapterService.edit(chapterEditParam);
|
|
|
+ return CommonResult.ok();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除课程章节表
|
|
|
+ *
|
|
|
+ * @author pans
|
|
|
+ * @date 2025/07/02 15:34
|
|
|
+ */
|
|
|
+ @ApiOperationSupport(order = 4)
|
|
|
+ @ApiOperation("删除课程章节表")
|
|
|
+ @CommonLog("删除课程章节表")
|
|
|
+ @SaCheckPermission("/disk/chapter/delete")
|
|
|
+ @PostMapping("/disk/chapter/delete")
|
|
|
+ public CommonResult<String> delete(@RequestBody @Valid @NotEmpty(message = "集合不能为空")
|
|
|
+ CommonValidList<ChapterIdParam> chapterIdParamList) {
|
|
|
+ chapterService.delete(chapterIdParamList);
|
|
|
+ return CommonResult.ok();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取课程章节表详情
|
|
|
+ *
|
|
|
+ * @author pans
|
|
|
+ * @date 2025/07/02 15:34
|
|
|
+ */
|
|
|
+ @ApiOperationSupport(order = 5)
|
|
|
+ @ApiOperation("获取课程章节表详情")
|
|
|
+ @SaCheckPermission("/disk/chapter/detail")
|
|
|
+ @GetMapping("/disk/chapter/detail")
|
|
|
+ public CommonResult<Chapter> detail(@Valid ChapterIdParam chapterIdParam) {
|
|
|
+ return CommonResult.data(chapterService.detail(chapterIdParam));
|
|
|
+ }
|
|
|
+
|
|
|
+}
|