|  |  |  | 
|---|
|  |  |  | @ApiOperation("查询全部数据(账号分配企业使用)") | 
|---|
|  |  |  | @PostMapping("/pageAll") | 
|---|
|  |  |  | @RequiresPermissions("business:companypermission:create") | 
|---|
|  |  |  | public ApiResponse<PageData<Company>> findPageAll (@RequestBody PageWrap<Company> pageWrap) { | 
|---|
|  |  |  | pageWrap.getModel().setQueryFlag(Constants.ONE);//查询全部 | 
|---|
|  |  |  | return ApiResponse.success(companyService.findPage(pageWrap)); | 
|---|
|  |  |  | public ApiResponse<List<Company>> findPageAll (@RequestBody  Company pageWrap) { | 
|---|
|  |  |  | pageWrap.setQueryFlag(Constants.ONE);//查询全部 | 
|---|
|  |  |  | return ApiResponse.success(companyService.findList(pageWrap)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation("导出Excel") | 
|---|