|  | @@ -26,11 +26,11 @@ public class SysEmployeePositionController extends BaseController {
 | 
	
		
			
				|  |  |      @ApiOperation(value = "获取分部下员工职位列表")
 | 
	
		
			
				|  |  |      @GetMapping("/findOrganPosition")
 | 
	
		
			
				|  |  |      @PreAuthorize("@pcs.hasPermissions('employeePosition/findOrganPosition')")
 | 
	
		
			
				|  |  | -    public Object findAll(String organIds) throws Exception {
 | 
	
		
			
				|  |  | -        if(StringUtils.isEmpty(organIds)){
 | 
	
		
			
				|  |  | -            organIds = organizationService.getEmployeeOrgan(organIds);
 | 
	
		
			
				|  |  | +    public Object findAll(String id) throws Exception {
 | 
	
		
			
				|  |  | +        if(StringUtils.isEmpty(id)){
 | 
	
		
			
				|  |  | +            id = organizationService.getEmployeeOrgan(id);
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          Integer tenantId = TenantContextHolder.getTenantId();
 | 
	
		
			
				|  |  | -        return succeed(employeePositionService.findOrganPosition(organIds, tenantId));
 | 
	
		
			
				|  |  | +        return succeed(employeePositionService.findOrganPosition(id, tenantId));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  }
 |