AdvertisedAtTimeDto.java 926 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /**
  2. * Copyright &copy; 2012-2016 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
  3. */
  4. package com.wechat.model.dto;
  5. import java.util.List;
  6. /**
  7. * @author jadyn.wu
  8. * @date: 2020-03-26 15:09
  9. */
  10. public class AdvertisedAtTimeDto {
  11. private String userName;// 联系方式
  12. private String hotel;// 酒店名称
  13. private List<String> jobList;
  14. private List<String> nameList;
  15. public String getUserName() {
  16. return userName;
  17. }
  18. public void setUserName(String userName) {
  19. this.userName = userName;
  20. }
  21. public List<String> getJobList() {
  22. return jobList;
  23. }
  24. public void setJobList(List<String> jobList) {
  25. this.jobList = jobList;
  26. }
  27. public List<String> getNameList() {
  28. return nameList;
  29. }
  30. public void setNameList(List<String> nameList) {
  31. this.nameList = nameList;
  32. }
  33. public String getHotel() {
  34. return hotel;
  35. }
  36. public void setHotel(String hotel) {
  37. this.hotel = hotel;
  38. }
  39. }