Hotel.java 549 B

1234567891011121314151617181920212223242526272829303132
  1. package com.happy.Model.Tour;
  2. public class Hotel {
  3. public String town;
  4. public String hotel;
  5. public String num;
  6. public String getTown() {
  7. return town;
  8. }
  9. public void setTown(String town) {
  10. this.town = town;
  11. }
  12. public String getHotel() {
  13. return hotel;
  14. }
  15. public void setHotel(String hotel) {
  16. this.hotel = hotel;
  17. }
  18. public String getNum() {
  19. return num;
  20. }
  21. public void setNum(String num) {
  22. this.num = num;
  23. }
  24. }