public class ABRow implements RowMapper<AABB> {


private String CMC;
@Override
public AABB mapRow(ResultSet rs, int rowNum) throws SQLException {
AABB a = new AABB();
a.setCDM(rs.getString("cdm"));
return a;
}

public String getCMC() {
return CMC;
}

public void setCMC(String CMC) {
this.CMC = CMC;
}
}
posted on 2017-10-25 12:42  天之城  阅读(2455)  评论(0)    收藏  举报