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;
}
}

相关文章:

  • 2022-12-23
  • 2021-04-24
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-05
  • 2022-12-23
  • 2021-11-02
  • 2021-11-14
  • 2021-07-14
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案