|  | @ -1665,6 +1665,16 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
 | 
	
		
			
				|  |  |                     "GROUP BY a.score_type";
 | 
	
		
			
				|  |  |             List<Map<String,Object>> listscore = jdbcTemplate.queryForList(sqlscore);
 | 
	
		
			
				|  |  |     
 | 
	
		
			
				|  |  |             Double doctorScore = new Double("0");
 | 
	
		
			
				|  |  |     
 | 
	
		
			
				|  |  |             if(listscore!=null&&listscore.size()>0){
 | 
	
		
			
				|  |  |                 for(Map<String,Object> _listscore :listscore){
 | 
	
		
			
				|  |  |                     doctorScore += (Double)_listscore.get("score");
 | 
	
		
			
				|  |  |                 }
 | 
	
		
			
				|  |  |             }
 | 
	
		
			
				|  |  |             doctorScore = doctorScore/3;
 | 
	
		
			
				|  |  |             rs.put("doctorScore",doctorScore);
 | 
	
		
			
				|  |  |     
 | 
	
		
			
				|  |  |             if(listscore!=null&&listscore.size()>0){
 | 
	
		
			
				|  |  |                 rs.put("scoreDoctor",listscore);
 | 
	
		
			
				|  |  |             }else{
 | 
	
	
		
			
				|  | @ -1674,6 +1684,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
 | 
	
		
			
				|  |  |             //查询评价明细
 | 
	
		
			
				|  |  |             String sqlScoreList = "SELECT " +
 | 
	
		
			
				|  |  |                     "a.score as score," +
 | 
	
		
			
				|  |  |                     "b.score as doctorscore," +
 | 
	
		
			
				|  |  |                     "a.score_type as score_type," +
 | 
	
		
			
				|  |  |                     "a.content as content," +
 | 
	
		
			
				|  |  |                     "b.create_time as create_time," +
 |