}
}
public class LibraryStrategyTypeMapper implements RowMapper<LibraryStrategyType> {
public LibraryStrategyType mapRow(ResultSet rs, int rowNum) throws SQLException {
LibraryStrategyType lst = new LibraryStrategyType();
lst.setLibraryStrategyTypeId(rs.getLong("libraryStrategyTypeId"));
lst.setName(rs.getString("name"));
lst.setDescription(rs.getString("description"));
return lst;
}