|
@@ -0,0 +1,128 @@
|
|
|
|
|
+/*
|
|
|
|
|
+ * 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 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.ClassHour;
|
|
|
|
|
+import vip.xiaonuo.disk.param.ClassHourAddParam;
|
|
|
|
|
+import vip.xiaonuo.disk.param.ClassHourEditParam;
|
|
|
|
|
+import vip.xiaonuo.disk.param.ClassHourIdParam;
|
|
|
|
|
+import vip.xiaonuo.disk.param.ClassHourPageParam;
|
|
|
|
|
+import vip.xiaonuo.disk.service.ClassHourService;
|
|
|
|
|
+import vip.xiaonuo.disk.vo.classhour.ClassHourVo;
|
|
|
|
|
+
|
|
|
|
|
+import javax.annotation.Resource;
|
|
|
|
|
+import javax.validation.Valid;
|
|
|
|
|
+import javax.validation.constraints.NotEmpty;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 课时表控制器
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author pans
|
|
|
|
|
+ * @date 2025/07/02 10:36
|
|
|
|
|
+ */
|
|
|
|
|
+@Api(tags = "课时表控制器")
|
|
|
|
|
+@ApiSupport(author = "SNOWY_TEAM", order = 1)
|
|
|
|
|
+@RestController
|
|
|
|
|
+@Validated
|
|
|
|
|
+public class ClassHourController {
|
|
|
|
|
+
|
|
|
|
|
+ @Resource
|
|
|
|
|
+ private ClassHourService classHourService;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 获取课时表分页
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author pans
|
|
|
|
|
+ * @date 2025/07/02 10:36
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperationSupport(order = 1)
|
|
|
|
|
+ @ApiOperation("获取课时表分页")
|
|
|
|
|
+ @GetMapping("/disk/hour/page")
|
|
|
|
|
+ public CommonResult<Page<ClassHourVo>> page(ClassHourPageParam classHourPageParam) {
|
|
|
|
|
+ return CommonResult.data(classHourService.page(classHourPageParam));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 添加课时表
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author pans
|
|
|
|
|
+ * @date 2025/07/02 10:36
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperationSupport(order = 2)
|
|
|
|
|
+ @ApiOperation("添加课时表")
|
|
|
|
|
+ @CommonLog("添加课时表")
|
|
|
|
|
+ @PostMapping("/disk/hour/add")
|
|
|
|
|
+ public CommonResult<String> add(@RequestBody @Valid ClassHourAddParam classHourAddParam) {
|
|
|
|
|
+ classHourService.add(classHourAddParam);
|
|
|
|
|
+ return CommonResult.ok();
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 编辑课时表
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author pans
|
|
|
|
|
+ * @date 2025/07/02 10:36
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperationSupport(order = 3)
|
|
|
|
|
+ @ApiOperation("编辑课时表")
|
|
|
|
|
+ @CommonLog("编辑课时表")
|
|
|
|
|
+ @PostMapping("/disk/hour/edit")
|
|
|
|
|
+ public CommonResult<String> edit(@RequestBody @Valid ClassHourEditParam classHourEditParam) {
|
|
|
|
|
+ classHourService.edit(classHourEditParam);
|
|
|
|
|
+ return CommonResult.ok();
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 删除课时表
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author pans
|
|
|
|
|
+ * @date 2025/07/02 10:36
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperationSupport(order = 4)
|
|
|
|
|
+ @ApiOperation("删除课时表")
|
|
|
|
|
+ @CommonLog("删除课时表")
|
|
|
|
|
+ @PostMapping("/disk/hour/delete")
|
|
|
|
|
+ public CommonResult<String> delete(@RequestBody @Valid @NotEmpty(message = "集合不能为空")
|
|
|
|
|
+ CommonValidList<ClassHourIdParam> classHourIdParamList) {
|
|
|
|
|
+ classHourService.delete(classHourIdParamList);
|
|
|
|
|
+ return CommonResult.ok();
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 获取课时表详情
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author pans
|
|
|
|
|
+ * @date 2025/07/02 10:36
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperationSupport(order = 5)
|
|
|
|
|
+ @ApiOperation("获取课时表详情")
|
|
|
|
|
+ @GetMapping("/disk/hour/detail")
|
|
|
|
|
+ public CommonResult<ClassHourVo> detail(@Valid ClassHourIdParam classHourIdParam) {
|
|
|
|
|
+ return CommonResult.data(classHourService.detail(classHourIdParam));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+}
|