| | |
| | | import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
| | | import io.swagger.annotations.*; |
| | | import lombok.AllArgsConstructor; |
| | | import org.springblade.common.vo.DeptVo; |
| | | import org.springblade.core.boot.ctrl.BladeController; |
| | | import org.springblade.core.cache.utils.CacheUtil; |
| | | import org.springblade.core.log.annotation.ApiLog; |
| | |
| | | public R selectInfo() { |
| | | return R.data(deptService.selectInfo()); |
| | | } |
| | | |
| | | /** |
| | | * 查询所有的部门信息 |
| | | * @return |
| | | */ |
| | | @GetMapping("/selDeptList") |
| | | public List<DeptVo> selDeptList() { |
| | | return deptService.selDeptList(); |
| | | } |
| | | } |