1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /**
- * Copyright © 2012-2016 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
- */
- package com.wechat.model.dto;
- import java.util.List;
- /**
- * @author jadyn.wu
- * @date: 2020-03-26 15:09
- */
- public class AdvertisedAtTimeDto {
-
- private String userName;// 联系方式
- private String hotel;// 酒店名称
- private List<String> jobList;
- private List<String> nameList;
-
- public String getUserName() {
- return userName;
- }
- public void setUserName(String userName) {
- this.userName = userName;
- }
- public List<String> getJobList() {
- return jobList;
- }
- public void setJobList(List<String> jobList) {
- this.jobList = jobList;
- }
- public List<String> getNameList() {
- return nameList;
- }
- public void setNameList(List<String> nameList) {
- this.nameList = nameList;
- }
- public String getHotel() {
- return hotel;
- }
- public void setHotel(String hotel) {
- this.hotel = hotel;
- }
- }
|