|
@ -45,7 +45,7 @@ public class EvaluateLabelService extends BaseService {
|
|
|
String sql ="select content,count(content) as amount from wlyy_evaluate_label where doctor =? group by content";
|
|
|
List<Object> params = new ArrayList<Object>();
|
|
|
params.add(doctor);
|
|
|
List<Map<String, Object>> result = this.jdbcTemplate.queryForList(sql,params);
|
|
|
List<Map<String, Object>> result = this.jdbcTemplate.queryForList(sql,params.toArray());
|
|
|
return result;
|
|
|
}
|
|
|
|