| 
					
				 | 
			
			
				@@ -49,10 +49,12 @@ public class EvaluationCycleController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             @RequestParam(required = false) Long companyOrgId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         IPage<EvaluationCycleEntity> iPage = new Page<>(pageNum, pageSize); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         EvaluationCycleEntity entity = new EvaluationCycleEntity(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        if (type != null && type.trim() != "") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        if (type != null && type.trim() != "") { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             entity.setType(Integer.valueOf(type)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        if (companyOrgId != null) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        if (companyOrgId != null) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             entity.setCompanyOrgId(companyOrgId.intValue()); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         iPage = evaluationCycleService.findPage(iPage, entity); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         Pagination<EvaluationCycleEntity> pages = new Pagination<>(iPage); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return new AjaxMessage<>(ResultStatus.OK, pages); 
			 |