|
|
|
|
@ -0,0 +1,97 @@
|
|
|
|
|
package cn.xluobo.business.sys.admin.controller;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cn.xluobo.business.sys.admin.domain.req.ReqSearchSysDept;
|
|
|
|
|
import cn.xluobo.business.sys.admin.domain.resp.RespTreeSelect;
|
|
|
|
|
import cn.xluobo.business.sys.admin.service.BusinessSysDeptService;
|
|
|
|
|
import cn.xluobo.core.api.APIResponse;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* <p>
|
|
|
|
|
* 部门表 前端控制器
|
|
|
|
|
* </p>
|
|
|
|
|
*
|
|
|
|
|
* @author zhangby
|
|
|
|
|
* @since 2020-01-18
|
|
|
|
|
*/
|
|
|
|
|
@RestController
|
|
|
|
|
@RequestMapping("/api/system/dept")
|
|
|
|
|
public class ISysDeptController {
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private BusinessSysDeptService sysDeptService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 列表
|
|
|
|
|
*
|
|
|
|
|
* @param reqSearchSysDept
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/list/searchList")
|
|
|
|
|
public APIResponse searchList(ReqSearchSysDept reqSearchSysDept) {
|
|
|
|
|
return sysDeptService.searchList(reqSearchSysDept);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 详情
|
|
|
|
|
*
|
|
|
|
|
* @param deptId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/info/detailById/{deptId}")
|
|
|
|
|
public APIResponse detailById(@PathVariable("deptId") Long deptId) {
|
|
|
|
|
return sysDeptService.detailById(deptId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 校区列表
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/list/campusList")
|
|
|
|
|
public APIResponse campusList() {
|
|
|
|
|
List<RespTreeSelect> respTreeSelects = sysDeptService.campusList();
|
|
|
|
|
return APIResponse.toAPIResponse(respTreeSelects);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 校区列表
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/list/campusListLimitByUser")
|
|
|
|
|
public APIResponse campusListLimitByUser() {
|
|
|
|
|
List<RespTreeSelect> respTreeSelects = sysDeptService.campusListLimitByUser();
|
|
|
|
|
return APIResponse.toAPIResponse(respTreeSelects);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 可选校区类型
|
|
|
|
|
* 如果拥有全部校区权限,返回全部校区 部分校区
|
|
|
|
|
* 否二 返回 部分校区
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/list/campusSelect")
|
|
|
|
|
public APIResponse campusSelect() {
|
|
|
|
|
List<RespTreeSelect> respTreeSelects = sysDeptService.campusSelect();
|
|
|
|
|
return APIResponse.toAPIResponse(respTreeSelects);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 可选校区类型
|
|
|
|
|
* 如果拥有全部校区权限,返回全部校区 部分校区
|
|
|
|
|
* 否二 返回 部分校区
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/list/campusSelectLimitByUser")
|
|
|
|
|
public APIResponse campusSelectLimitByUser() {
|
|
|
|
|
List<RespTreeSelect> respTreeSelects = sysDeptService.campusSelectLimitByUser();
|
|
|
|
|
return APIResponse.toAPIResponse(respTreeSelects);
|
|
|
|
|
}
|
|
|
|
|
}
|