|
@@ -48,8 +48,8 @@ public class ManageController {
|
|
|
return manageService.list(manageVO);
|
|
|
}
|
|
|
|
|
|
- @GetMapping("/export")
|
|
|
- public void export( ManageVO manageVO, HttpServletResponse response) throws Exception{
|
|
|
+ @PostMapping("/export")
|
|
|
+ public void export(@RequestBody ManageVO manageVO, HttpServletResponse response) throws Exception{
|
|
|
List<Long> deptIds = new ArrayList<>();
|
|
|
if(null == manageVO.getDeptId() || manageVO.getDeptId().size() ==0){
|
|
|
ApiResult<List<Department>> deptResult = departmentService.getDeptChild(12345l, DeptTypeEnum.COMPANY);
|