|
@@ -0,0 +1,130 @@
|
|
|
|
|
+/*
|
|
|
|
|
+ * 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.dto.ShareGroupuser.*;
|
|
|
|
|
+import vip.xiaonuo.disk.service.ShareGroupUserService;
|
|
|
|
|
+
|
|
|
|
|
+import javax.annotation.Resource;
|
|
|
|
|
+import javax.validation.Valid;
|
|
|
|
|
+import javax.validation.constraints.NotEmpty;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 资源共享-群组控制器
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author honorfire
|
|
|
|
|
+ * @date 2025/06/18 14:16
|
|
|
|
|
+ */
|
|
|
|
|
+@Api(tags = "资源共享-群组控制器")
|
|
|
|
|
+@ApiSupport(author = "SNOWY_TEAM", order = 1)
|
|
|
|
|
+@RestController
|
|
|
|
|
+@Validated
|
|
|
|
|
+public class ShareGroupController {
|
|
|
|
|
+
|
|
|
|
|
+ @Resource
|
|
|
|
|
+ private ShareGroupUserService shareGroupUserService;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 获取资源共享-群组人员关联表分页
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author honorfire
|
|
|
|
|
+ * @date 2025/06/18 14:16
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperationSupport(order = 1)
|
|
|
|
|
+ @ApiOperation("获取资源共享-群组人员关联表分页")
|
|
|
|
|
+ @SaCheckPermission("/disk/sharegroupuser/page")
|
|
|
|
|
+ @GetMapping("/disk/sharegroupuser/page")
|
|
|
|
|
+ public CommonResult<Page<ShareGroupUser>> page(ShareGroupUserPageParam shareGroupUserPageParam) {
|
|
|
|
|
+ return CommonResult.data(shareGroupUserService.page(shareGroupUserPageParam));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 资源共享-群组-新增
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author honorfire
|
|
|
|
|
+ * @date 2025/06/18 14:16
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperationSupport(order = 2)
|
|
|
|
|
+ @ApiOperation("资源共享-群组-新增")
|
|
|
|
|
+ @CommonLog("资源共享-群组-新增")
|
|
|
|
|
+ @SaCheckPermission("/disk/sharegroup/add")
|
|
|
|
|
+ @PostMapping("/disk/sharegroup/add")
|
|
|
|
|
+ public CommonResult<String> add(@RequestBody @Valid ShareGroupAddParam shareGroupAddParam) {
|
|
|
|
|
+ //先创建一个角色为群组的用户
|
|
|
|
|
+
|
|
|
|
|
+ shareGroupUserService.add(shareGroupAddParam);
|
|
|
|
|
+ return CommonResult.ok();
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 编辑资源共享-群组人员关联表
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author honorfire
|
|
|
|
|
+ * @date 2025/06/18 14:16
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperationSupport(order = 3)
|
|
|
|
|
+ @ApiOperation("编辑资源共享-群组人员关联表")
|
|
|
|
|
+ @CommonLog("编辑资源共享-群组人员关联表")
|
|
|
|
|
+ @SaCheckPermission("/disk/sharegroupuser/edit")
|
|
|
|
|
+ @PostMapping("/disk/sharegroupuser/edit")
|
|
|
|
|
+ public CommonResult<String> edit(@RequestBody @Valid ShareGroupEditParam shareGroupEditParam) {
|
|
|
|
|
+ shareGroupUserService.edit(shareGroupEditParam);
|
|
|
|
|
+ return CommonResult.ok();
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 删除资源共享-群组人员关联表
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author honorfire
|
|
|
|
|
+ * @date 2025/06/18 14:16
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperationSupport(order = 4)
|
|
|
|
|
+ @ApiOperation("删除资源共享-群组人员关联表")
|
|
|
|
|
+ @CommonLog("删除资源共享-群组人员关联表")
|
|
|
|
|
+ @SaCheckPermission("/disk/sharegroupuser/delete")
|
|
|
|
|
+ @PostMapping("/disk/sharegroupuser/delete")
|
|
|
|
|
+ public CommonResult<String> delete(@RequestBody @Valid @NotEmpty(message = "集合不能为空")
|
|
|
|
|
+ CommonValidList<ShareGroupUserIdParam> shareGroupUserIdParamList) {
|
|
|
|
|
+ shareGroupUserService.delete(shareGroupUserIdParamList);
|
|
|
|
|
+ return CommonResult.ok();
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 获取资源共享-群组人员关联表详情
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author honorfire
|
|
|
|
|
+ * @date 2025/06/18 14:16
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperationSupport(order = 5)
|
|
|
|
|
+ @ApiOperation("获取资源共享-群组人员关联表详情")
|
|
|
|
|
+ @SaCheckPermission("/disk/sharegroupuser/detail")
|
|
|
|
|
+ @GetMapping("/disk/sharegroupuser/detail")
|
|
|
|
|
+ public CommonResult<ShareGroupUser> detail(@Valid ShareGroupUserIdParam shareGroupUserIdParam) {
|
|
|
|
|
+ return CommonResult.data(shareGroupUserService.detail(shareGroupUserIdParam));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+}
|