public class Place { Integer id; String name; Integer spot; String date; Integer rods; Boolean paid; public Place(Integer id, String name, Integer spot, String date, Integer rods, Boolean paid) { this.id = id; this.name = name; this.spot = spot; this.date = date; this.rods = rods; this.paid = paid; } }