|  |  | @ -688,6 +688,9 @@ public class EpmetUserServiceImpl implements EpmetUserService { | 
			
		
	
		
			
				
					|  |  |  |         //1.分页查询排好序的工作人员Id列表【原本1/2步可以用一个sql,但涉及2需要按1的顺序排序,sql复杂且效率低,所以拆开】
 | 
			
		
	
		
			
				
					|  |  |  |         LinkedList<String> staffIds = customerStaffDao.selectOrderRole(formDTO); | 
			
		
	
		
			
				
					|  |  |  |         //2.批量查询工作人员信息,按传入顺序排序
 | 
			
		
	
		
			
				
					|  |  |  |         if(CollectionUtils.isEmpty(staffIds)){ | 
			
		
	
		
			
				
					|  |  |  |             return new ArrayList<>(); | 
			
		
	
		
			
				
					|  |  |  |         } | 
			
		
	
		
			
				
					|  |  |  |         List<ListStaffResultDTO> resultList = customerStaffDao.selectStaffList(staffIds); | 
			
		
	
		
			
				
					|  |  |  |         return resultList; | 
			
		
	
		
			
				
					|  |  |  |     } | 
			
		
	
	
		
			
				
					|  |  | 
 |