return e;
}
public class LibraryQcTypeMapper implements RowMapper<QcType> {
public QcType mapRow(ResultSet rs, int rowNum) throws SQLException {
QcType qt = new QcType();
qt.setQcTypeId(rs.getLong("qcTypeId"));
qt.setName(rs.getString("name"));
qt.setDescription(rs.getString("description"));
qt.setUnits(rs.getString("units"));
return qt;
}