@Override
public Integer add(Board board) {
String sql = "INSERT INTO tz_board(title, description) VALUES(?,?)";
jdbcTemplate.update(sql, board.getTitle(), board.getDescription());
Integer boardId = jdbcTemplate.
return boardId;
}
不知道我这样写对不对
Integer boardId = jdbcTemplate.