package main.java; public class TourBudget { private int employeeID; private int adults; private int children; private int rooms; private double spa; private int hotpot; private double budget; public TourBudget(int employeeID, int adults, int children, int rooms, double spa, int hotpot, double budget) { this.employeeID = employeeID; this.adults = adults; this.children = children; this.rooms = rooms; this.spa = spa; this.hotpot = hotpot; this.budget = budget; } // Get and Set methods. public int getEmployeeID() { return employeeID; } public void setEmployeeID(int employeeID) { this.employeeID = employeeID; } public int getAdults() { return adults; } public void setAdults(int adults) { this.adults = adults; } public int getChildren() { return children; } public void setChildren(int children) { this.children = children; } public int getRooms() { return rooms; } public void setRooms(int rooms) { this.rooms = rooms; } public double getSpa() { return spa; } public void setSpa(double spa) { this.spa = spa; } public int getHotpot() { return hotpot; } public void setHotpot(int hotpot) { this.hotpot = hotpot; } public double getBudget() { return budget; } public void setBudget(double budget) { this.budget = budget; } }