cimit13 刀路什么都设置好了。 怎么把刀路编程保存出来

2025-04-07 19:42:50
推荐回答(1个)
回答1:

while (rs.next()) {
Bars bar = new Bars();
bar.setId(rs.getLong("id"));
bar.setName(rs.getString("name"));
bar.setType(rs.getInt("type"));
bar.setCreatorId(rs.getLong("creator_id"));
resultList.add(bar);
}