*/
public List<Topic> querySubTopicList(String topicId) {
String sql = "select * from bu_topic where parent_topic = :topicId order by topic_name";
Map<String, String> map = new HashMap<String, String>();
map.put("topicId", topicId);
return namedParameterJdbcTemplate.query(sql, map, new TopicMapper());
}