|  |  | @ -21,13 +21,13 @@ public class Record { | 
			
		
	
		
		
			
				
					
					|  |  |  |         if (results.isPaidOnly()) { |  |  |  |         if (results.isPaidOnly()) { | 
			
		
	
		
		
			
				
					
					|  |  |  |             params.put("englishContent", "这道题是~付~费~内容哦"); |  |  |  |             params.put("englishContent", "这道题是~付~费~内容哦"); | 
			
		
	
		
		
			
				
					
					|  |  |  |         } else { |  |  |  |         } else { | 
			
		
	
		
		
			
				
					
					|  |  |  |             params.put("englishContent", results.getTitle()); |  |  |  |             params.put("englishContent", results.getContent()); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |         } |  |  |  |         } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |         params.put("englishTitle", results.getTitle()); |  |  |  |         params.put("englishTitle", results.getTitle()); | 
			
		
	
		
		
			
				
					
					|  |  |  |         params.put("title", results.getChineseTitle()); |  |  |  |         params.put("title", results.getChineseTitle()); | 
			
		
	
		
		
			
				
					
					|  |  |  |         params.put("content", results.getChineseContent()); |  |  |  |         params.put("content", results.getChineseContent()); | 
			
		
	
		
		
			
				
					
					|  |  |  |         params.put("hints", results.getDifficulty()); |  |  |  |         params.put("level", results.getDifficulty()); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |         params.put("id", results.getId()); |  |  |  |         params.put("id", results.getId()); | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |         StringBuilder tagStringBuilder = new StringBuilder(); |  |  |  |         StringBuilder tagStringBuilder = new StringBuilder(); | 
			
		
	
	
		
		
			
				
					|  |  | @ -41,7 +41,7 @@ public class Record { | 
			
		
	
		
		
			
				
					
					|  |  |  |         StringBuilder hintStringBuilder = new StringBuilder(); |  |  |  |         StringBuilder hintStringBuilder = new StringBuilder(); | 
			
		
	
		
		
			
				
					
					|  |  |  |         List<String> hints = results.getHints(); |  |  |  |         List<String> hints = results.getHints(); | 
			
		
	
		
		
			
				
					
					|  |  |  |         for (String hint : hints) { |  |  |  |         for (String hint : hints) { | 
			
		
	
		
		
			
				
					
					|  |  |  |             hintStringBuilder.append('[').append(hint).append("]\n\n"); |  |  |  |             hintStringBuilder.append(hint).append("\n\n"); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |         } |  |  |  |         } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |         params.put("hints", hintStringBuilder.toString()); |  |  |  |         params.put("hints", hintStringBuilder.toString()); | 
			
		
	
	
		
		
			
				
					|  |  | 
 |