| 
					
				 | 
			
			
				@ -87,6 +87,12 @@ public class ZjxlSystemDictService extends BaseService { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return systemDictList; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public List<ZjxlSystemDict> findAllType(){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        String sql = "select * from zjxl_system_dict where system_dict_is_line = 1 group by system_dict_type"; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        List<ZjxlSystemDict> systemDictList = jdbcTemplate.query(sql, new BeanPropertyRowMapper<>(ZjxlSystemDict.class)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return systemDictList; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public List<ZjxlSystemDict> findNewsTypeA(Integer systemDictType,String articleContentClassify){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        String sql = "select * from zjxl_system_dict where system_dict_type = "+systemDictType+"    AND system_dict_classify = '"+articleContentClassify+"' group by system_dict_subclassify"; 
			 |