哪里不对呢。。我的商品类的价格用int类型可是我在获取的时候
我的商品类的价格用int类型可是我在获取的时候,我在获取的商品给他设置值的时候他显示我的类型不对?
while(rs.next()){
Items items=new Items();
items.setCity(rs.getString("city"));
items.setId(rs.getInt("id"));
items.setName(rs.getString("name"));
items.setNumber(rs.getInt("number"));
items.setPicture(rs.getString("picture"));
items.setPrice(rs.getInt("price"));
list.add(items);///每次遍历把一个商品加入集合