@Override
public List<BatchSchedule> findByHostId(List<String> hostIds) {
Map<String, Object> args = new HashMap<String, Object>();
args.put("hostIds", hostIds);
return getNamedJdbcTemplate().query("batchSch.findByHost", null, args,
new BatchScheduleRowMapper());
}