DeptController.java 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. *
  7. * Redistributions of source code must retain the above copyright notice,
  8. * this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * Neither the name of the dreamlu.net developer nor the names of its
  13. * contributors may be used to endorse or promote products derived from
  14. * this software without specific prior written permission.
  15. * Author: Chill 庄骞 (smallchill@163.com)
  16. */
  17. package org.springblade.modules.system.controller;
  18. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  19. import com.baomidou.mybatisplus.core.toolkit.Wrappers;
  20. import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
  21. import io.swagger.annotations.*;
  22. import lombok.AllArgsConstructor;
  23. import org.springblade.common.cache.DictCache;
  24. import org.springblade.common.cache.UserCache;
  25. import org.springblade.common.enums.DictEnum;
  26. import org.springblade.core.boot.ctrl.BladeController;
  27. import org.springblade.core.cache.utils.CacheUtil;
  28. import org.springblade.core.launch.constant.AppConstant;
  29. import org.springblade.core.mp.support.Condition;
  30. import org.springblade.core.secure.BladeUser;
  31. import org.springblade.core.secure.annotation.PreAuth;
  32. import org.springblade.core.secure.constant.AuthConstant;
  33. import org.springblade.core.tenant.annotation.NonDS;
  34. import org.springblade.core.tool.api.R;
  35. import org.springblade.core.tool.constant.BladeConstant;
  36. import org.springblade.core.tool.constant.RoleConstant;
  37. import org.springblade.core.tool.support.Kv;
  38. import org.springblade.core.tool.utils.Func;
  39. import org.springblade.modules.system.entity.Dept;
  40. import org.springblade.modules.system.entity.User;
  41. import org.springblade.modules.system.service.IDeptService;
  42. import org.springblade.modules.system.vo.DeptVO;
  43. import org.springblade.modules.system.wrapper.DeptWrapper;
  44. import org.springframework.web.bind.annotation.*;
  45. import springfox.documentation.annotations.ApiIgnore;
  46. import javax.validation.Valid;
  47. import java.util.List;
  48. import java.util.Map;
  49. import static org.springblade.core.cache.constant.CacheConstant.SYS_CACHE;
  50. /**
  51. * 控制器
  52. *
  53. * @author Chill
  54. */
  55. @NonDS
  56. @RestController
  57. @AllArgsConstructor
  58. @RequestMapping(AppConstant.APPLICATION_SYSTEM_NAME + "/dept")
  59. @Api(value = "部门", tags = "部门")
  60. @PreAuth(RoleConstant.HAS_ROLE_ADMIN)
  61. public class DeptController extends BladeController {
  62. private final IDeptService deptService;
  63. /**
  64. * 详情
  65. */
  66. @GetMapping("/detail")
  67. @ApiOperationSupport(order = 1)
  68. @ApiOperation(value = "详情", notes = "传入dept")
  69. public R<DeptVO> detail(Dept dept) {
  70. Dept detail = deptService.getOne(Condition.getQueryWrapper(dept));
  71. return R.data(DeptWrapper.build().entityVO(detail));
  72. }
  73. /**
  74. * 列表
  75. */
  76. @GetMapping("/list")
  77. @ApiImplicitParams({
  78. @ApiImplicitParam(name = "deptName", value = "部门名称", paramType = "query", dataType = "string"),
  79. @ApiImplicitParam(name = "fullName", value = "部门全称", paramType = "query", dataType = "string")
  80. })
  81. @ApiOperationSupport(order = 2)
  82. @ApiOperation(value = "列表", notes = "传入dept")
  83. public R<List<DeptVO>> list(@ApiIgnore @RequestParam Map<String, Object> dept, BladeUser bladeUser) {
  84. QueryWrapper<Dept> queryWrapper = Condition.getQueryWrapper(dept, Dept.class);
  85. List<Dept> list = deptService.list((!bladeUser.getTenantId().equals(BladeConstant.ADMIN_TENANT_ID)) ? queryWrapper.lambda().eq(Dept::getTenantId, bladeUser.getTenantId()) : queryWrapper);
  86. return R.data(DeptWrapper.build().listNodeVO(list));
  87. }
  88. /**
  89. * 懒加载列表
  90. */
  91. @GetMapping("/lazy-list")
  92. @ApiImplicitParams({
  93. @ApiImplicitParam(name = "deptName", value = "部门名称", paramType = "query", dataType = "string"),
  94. @ApiImplicitParam(name = "fullName", value = "部门全称", paramType = "query", dataType = "string")
  95. })
  96. @ApiOperationSupport(order = 3)
  97. @ApiOperation(value = "懒加载列表", notes = "传入dept")
  98. public R<List<DeptVO>> lazyList(@ApiIgnore @RequestParam Map<String, Object> dept, Long parentId, BladeUser bladeUser) {
  99. List<DeptVO> list = deptService.lazyList(bladeUser.getTenantId(), parentId, dept);
  100. return R.data(DeptWrapper.build().listNodeLazyVO(list));
  101. }
  102. /**
  103. * 获取部门树形结构
  104. */
  105. @GetMapping("/tree")
  106. @ApiOperationSupport(order = 4)
  107. @ApiOperation(value = "树形结构", notes = "树形结构")
  108. public R<List<DeptVO>> tree(String tenantId, BladeUser bladeUser) {
  109. List<DeptVO> tree = deptService.tree(Func.toStrWithEmpty(tenantId, bladeUser.getTenantId()));
  110. return R.data(tree);
  111. }
  112. /**
  113. * 懒加载获取部门树形结构
  114. */
  115. @GetMapping("/lazy-tree")
  116. @ApiOperationSupport(order = 5)
  117. @ApiOperation(value = "懒加载树形结构", notes = "树形结构")
  118. public R<List<DeptVO>> lazyTree(String tenantId, Long parentId, BladeUser bladeUser) {
  119. List<DeptVO> tree = deptService.lazyTree(Func.toStrWithEmpty(tenantId, bladeUser.getTenantId()), parentId);
  120. return R.data(tree);
  121. }
  122. /**
  123. * 新增或修改
  124. */
  125. @PostMapping("/submit")
  126. @ApiOperationSupport(order = 6)
  127. @ApiOperation(value = "新增或修改", notes = "传入dept")
  128. public R submit(@Valid @RequestBody Dept dept) {
  129. if (deptService.submit(dept)) {
  130. CacheUtil.clear(SYS_CACHE);
  131. // 返回懒加载树更新节点所需字段
  132. Kv kv = Kv.create().set("id", String.valueOf(dept.getId())).set("tenantId", dept.getTenantId())
  133. .set("deptCategoryName", DictCache.getValue(DictEnum.ORG_CATEGORY, dept.getDeptCategory()));
  134. return R.data(kv);
  135. }
  136. return R.fail("操作失败");
  137. }
  138. /**
  139. * 删除
  140. */
  141. @PostMapping("/remove")
  142. @ApiOperationSupport(order = 7)
  143. @ApiOperation(value = "删除", notes = "传入ids")
  144. public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
  145. CacheUtil.clear(SYS_CACHE);
  146. return R.status(deptService.removeDept(ids));
  147. }
  148. /**
  149. * 下拉数据源
  150. */
  151. @PreAuth(AuthConstant.PERMIT_ALL)
  152. @GetMapping("/select")
  153. @ApiOperationSupport(order = 8)
  154. @ApiOperation(value = "下拉数据源", notes = "传入id集合")
  155. public R<List<Dept>> select(Long userId, String deptId) {
  156. if (Func.isNotEmpty(userId)) {
  157. User user = UserCache.getUser(userId);
  158. deptId = user.getDeptId();
  159. }
  160. List<Dept> list = deptService.list(Wrappers.<Dept>lambdaQuery().in(Dept::getId, Func.toLongList(deptId)));
  161. return R.data(list);
  162. }
  163. }