|  | @ -74,6 +74,7 @@ public class MessageService extends BaseJpaService<BaseMessageDO, MessageDao> {
 | 
	
		
			
				|  |  |         List<Map<String, Object>> unReadResult = messageListSql(platform,code,0,page,unReadPageSize);
 | 
	
		
			
				|  |  |         for(Map<String, Object> one:unReadResult){
 | 
	
		
			
				|  |  |             Map<String,Object> unReadMap = new HashedMap();
 | 
	
		
			
				|  |  |             unReadMap.put("patientCode",one.get("sender"));
 | 
	
		
			
				|  |  |             unReadMap.put("name",one.get("sender_name"));
 | 
	
		
			
				|  |  |             unReadMap.put("count",one.get("num"));
 | 
	
		
			
				|  |  |             unReadMap.put("message",one.get("msg_content"));
 | 
	
	
		
			
				|  | @ -85,6 +86,7 @@ public class MessageService extends BaseJpaService<BaseMessageDO, MessageDao> {
 | 
	
		
			
				|  |  |             List<Map<String, Object>> readResult = messageListSql(platform,code,1,page,unReadPageSize);
 | 
	
		
			
				|  |  |             for(Map<String, Object> one:readResult){
 | 
	
		
			
				|  |  |                 Map<String,Object> readMap = new HashedMap();
 | 
	
		
			
				|  |  |                 readMap.put("patientCode",one.get("sender"));
 | 
	
		
			
				|  |  |                 readMap.put("name",one.get("sender_name"));
 | 
	
		
			
				|  |  |                 readMap.put("count",one.get("num"));
 | 
	
		
			
				|  |  |                 readMap.put("message",one.get("msg_content"));
 |