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