|  | @ -551,16 +551,19 @@ public class ArticleServiceImpl extends BaseServiceImpl<ArticleDao, ArticleEntit | 
			
		
	
		
		
			
				
					|  |  | 		recordEntity.setOpUser(articleEntity.getPublisherName() + StrConstant.HYPHEN + staffDTO.getRealName()); |  |  | 		recordEntity.setOpUser(articleEntity.getPublisherName() + StrConstant.HYPHEN + staffDTO.getRealName()); | 
			
		
	
		
		
			
				
					|  |  | 		//下线文案,分为全部下线和部分下线
 |  |  | 		//下线文案,分为全部下线和部分下线
 | 
			
		
	
		
		
			
				
					|  |  | 		String content = ""; |  |  | 		String content = ""; | 
			
		
	
		
		
			
				
					|  |  |  |  |  | 		StringBuffer offLineGridId = new StringBuffer(); | 
			
		
	
		
		
			
				
					|  |  | 		if (null == publishedList || publishedList.size() < NumConstant.ONE) { |  |  | 		if (null == publishedList || publishedList.size() < NumConstant.ONE) { | 
			
		
	
		
		
			
				
					|  |  | 			content = String.format(ArticleConstant.OFF_LINE_ALL_ARTICLE_MSG, articleEntity.getPublisherName(), staffDTO.getRealName(), articleEntity.getTitle()); |  |  | 			content = String.format(ArticleConstant.OFF_LINE_ALL_ARTICLE_MSG, articleEntity.getPublisherName(), staffDTO.getRealName(), articleEntity.getTitle()); | 
			
		
	
		
		
			
				
					|  |  | 		} else { |  |  | 		} else { | 
			
		
	
		
		
			
				
					|  |  | 			StringBuffer offLineRangeDesc = new StringBuffer(); |  |  | 			StringBuffer offLineRangeDesc = new StringBuffer(); | 
			
		
	
		
		
			
				
					|  |  | 			offLineList.forEach(off -> { |  |  | 			offLineList.forEach(off -> { | 
			
		
	
		
		
			
				
					|  |  |  |  |  | 				offLineGridId.append(StrConstant.COLON).append(off.getGridId()); | 
			
		
	
		
		
			
				
					|  |  | 				offLineRangeDesc.append(offLineRangeDesc.length() > NumConstant.ZERO ? StrConstant.COMMA_ZH : ""); |  |  | 				offLineRangeDesc.append(offLineRangeDesc.length() > NumConstant.ZERO ? StrConstant.COMMA_ZH : ""); | 
			
		
	
		
		
			
				
					|  |  | 				offLineRangeDesc.append(off.getAgencyGridName()); |  |  | 				offLineRangeDesc.append(off.getAgencyGridName()); | 
			
		
	
		
		
			
				
					|  |  | 			}); |  |  | 			}); | 
			
		
	
		
		
			
				
					|  |  | 			content = String.format(ArticleConstant.OFF_LINE_ARTICLE_MSG, articleEntity.getPublisherName(), staffDTO.getRealName(), articleEntity.getTitle(), offLineRangeDesc); |  |  | 			content = String.format(ArticleConstant.OFF_LINE_ARTICLE_MSG, articleEntity.getPublisherName(), staffDTO.getRealName(), articleEntity.getTitle(), offLineRangeDesc); | 
			
		
	
		
		
			
				
					|  |  | 		} |  |  | 		} | 
			
		
	
		
		
			
				
					|  |  |  |  |  | 		recordEntity.setGridIds(offLineGridId.toString().replaceFirst(StrConstant.COLON,"")); | 
			
		
	
		
		
			
				
					|  |  | 		recordEntity.setContent(content); |  |  | 		recordEntity.setContent(content); | 
			
		
	
		
		
			
				
					|  |  | 		recordEntity.setOpType(ArticleConstant.OFFLINE); |  |  | 		recordEntity.setOpType(ArticleConstant.OFFLINE); | 
			
		
	
		
		
			
				
					|  |  | 		recordEntity.setOpTime(date); |  |  | 		recordEntity.setOpTime(date); | 
			
		
	
	
		
		
			
				
					|  | 
 |