|
|
@@ -0,0 +1,126 @@
|
|
|
+/*
|
|
|
+ * 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.College;
|
|
|
+import vip.xiaonuo.disk.param.CollegeAddParam;
|
|
|
+import vip.xiaonuo.disk.param.CollegeEditParam;
|
|
|
+import vip.xiaonuo.disk.param.CollegeIdParam;
|
|
|
+import vip.xiaonuo.disk.param.CollegePageParam;
|
|
|
+import vip.xiaonuo.disk.service.CollegeService;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+import javax.validation.Valid;
|
|
|
+import javax.validation.constraints.NotEmpty;
|
|
|
+
|
|
|
+/**
|
|
|
+ * college控制器
|
|
|
+ *
|
|
|
+ * @author pans
|
|
|
+ * @date 2025/06/26 09:09
|
|
|
+ */
|
|
|
+@Api(tags = "college控制器")
|
|
|
+@ApiSupport(author = "SNOWY_TEAM", order = 1)
|
|
|
+@RestController
|
|
|
+@Validated
|
|
|
+public class CollegeController {
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private CollegeService collegeService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取college分页
|
|
|
+ *
|
|
|
+ * @author pans
|
|
|
+ * @date 2025/06/26 09:09
|
|
|
+ */
|
|
|
+ @ApiOperationSupport(order = 1)
|
|
|
+ @ApiOperation("获取college分页")
|
|
|
+ @GetMapping("/disk/college/page")
|
|
|
+ public CommonResult<Page<College>> page(CollegePageParam collegePageParam) {
|
|
|
+ return CommonResult.data(collegeService.page(collegePageParam));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 添加college
|
|
|
+ *
|
|
|
+ * @author pans
|
|
|
+ * @date 2025/06/26 09:09
|
|
|
+ */
|
|
|
+ @ApiOperationSupport(order = 2)
|
|
|
+ @ApiOperation("添加college")
|
|
|
+ @CommonLog("添加college")
|
|
|
+ @PostMapping("/disk/college/add")
|
|
|
+ public CommonResult<String> add(@RequestBody @Valid CollegeAddParam collegeAddParam) {
|
|
|
+ collegeService.add(collegeAddParam);
|
|
|
+ return CommonResult.ok();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 编辑college
|
|
|
+ *
|
|
|
+ * @author pans
|
|
|
+ * @date 2025/06/26 09:09
|
|
|
+ */
|
|
|
+ @ApiOperationSupport(order = 3)
|
|
|
+ @ApiOperation("编辑college")
|
|
|
+ @CommonLog("编辑college")
|
|
|
+ @PostMapping("/disk/college/edit")
|
|
|
+ public CommonResult<String> edit(@RequestBody @Valid CollegeEditParam collegeEditParam) {
|
|
|
+ collegeService.edit(collegeEditParam);
|
|
|
+ return CommonResult.ok();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除college
|
|
|
+ *
|
|
|
+ * @author pans
|
|
|
+ * @date 2025/06/26 09:09
|
|
|
+ */
|
|
|
+ @ApiOperationSupport(order = 4)
|
|
|
+ @ApiOperation("删除college")
|
|
|
+ @CommonLog("删除college")
|
|
|
+ @PostMapping("/disk/college/delete")
|
|
|
+ public CommonResult<String> delete(@RequestBody @Valid @NotEmpty(message = "集合不能为空")
|
|
|
+ CommonValidList<CollegeIdParam> collegeIdParamList) {
|
|
|
+ collegeService.delete(collegeIdParamList);
|
|
|
+ return CommonResult.ok();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取college详情
|
|
|
+ *
|
|
|
+ * @author pans
|
|
|
+ * @date 2025/06/26 09:09
|
|
|
+ */
|
|
|
+ @ApiOperationSupport(order = 5)
|
|
|
+ @ApiOperation("获取college详情")
|
|
|
+ @GetMapping("/disk/college/detail")
|
|
|
+ public CommonResult<College> detail(@Valid CollegeIdParam collegeIdParam) {
|
|
|
+ return CommonResult.data(collegeService.detail(collegeIdParam));
|
|
|
+ }
|
|
|
+
|
|
|
+}
|