}
}
public class TagBarcodeMapper implements RowMapper<TagBarcode> {
public TagBarcode mapRow(ResultSet rs, int rowNum) throws SQLException {
TagBarcode tb = new TagBarcodeImpl();
tb.setId(rs.getLong("tagId"));
tb.setName(rs.getString("name"));
tb.setSequence(rs.getString("sequence"));
tb.setPlatformType(PlatformType.get(rs.getString("platformName")));
tb.setStrategyName(rs.getString("strategyName"));
return tb;
}