|  |  | 
 |  |  | import com.doumee.core.model.PageWrap; | 
 |  |  | import com.doumee.core.model.PageData; | 
 |  |  | import com.doumee.core.utils.Constants; | 
 |  |  | import com.doumee.dao.admin.response.CompanyDTO; | 
 |  |  | import com.doumee.dao.business.model.Company; | 
 |  |  | import com.doumee.service.business.CompanyService; | 
 |  |  | import io.swagger.annotations.Api; | 
 |  |  | 
 |  |  |         company.setCategoryId(query.getCategoryId()); | 
 |  |  |         return ApiResponse.success(companyService.findList(company)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 查询部门及其子部门信息 | 
 |  |  |      * @param type 0 查询所有信息 1 查询内部信息 | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     @ApiOperation("根据类型查询组织信息") | 
 |  |  |     @GetMapping("/findCompanyTreePage") | 
 |  |  | //    @RequiresPermissions("business:company:query") | 
 |  |  |     public ApiResponse<List<CompanyDTO>> findCompanyTreePage(Integer type){ | 
 |  |  |         return ApiResponse.success(companyService.findCompanyTreePage(type)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | } |