|  |  | @ -95,16 +95,14 @@ public class CheckReportManager { | 
			
		
	
		
		
			
				
					
					|  |  |  |         return checkTypeItemDTOList; |  |  |  |         return checkTypeItemDTOList; | 
			
		
	
		
		
			
				
					
					|  |  |  |     } |  |  |  |     } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |     public List<CheckTypeDTO> getCheckTypeDTOParent(String type) { |  |  |  |     public List<CheckTypeDTO> getCheckTypeDtoParent(String type) { | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |         List<CheckTypeDTO> checkTypeDtoS = new ArrayList<>(); |  |  |  |         List<CheckTypeDTO> checkTypeDtoS = new ArrayList<>(); | 
			
		
	
		
		
			
				
					
					|  |  |  |         SysDictData sysDictData =new SysDictData(); |  |  |  |         SysDictData sysDictData =new SysDictData(); | 
			
		
	
		
		
			
				
					
					|  |  |  |         sysDictData.setDictType(type); |  |  |  |         sysDictData.setDictType(type); | 
			
		
	
		
		
			
				
					
					|  |  |  |         List<SysDictData> list = dictDataService.selectDictDataList(sysDictData); |  |  |  |         List<SysDictData> list = dictDataService.selectDictDataList(sysDictData); | 
			
		
	
		
		
			
				
					
					|  |  |  |         list.forEach(sysDictData1 -> { |  |  |  |         list.forEach(sysDictData1 -> checkTypeDtoS.add(CheckTypeDTO.builder() | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  |             checkTypeDtoS.add(CheckTypeDTO.builder() |  |  |  |                 .typeName(sysDictData1.getDictLabel()) | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  |                     .typeName(sysDictData1.getDictLabel()) |  |  |  |                 .checkType(sysDictData1.getDictValue()).build())); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  |                     .checkType(sysDictData1.getDictValue()).build()); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |         }); |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |         return checkTypeDtoS; |  |  |  |         return checkTypeDtoS; | 
			
		
	
		
		
			
				
					
					|  |  |  |     } |  |  |  |     } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
	
		
		
			
				
					|  |  | 
 |