/**
 * Copyright &copy; 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
 */
package com.cku.oa.show.entity;

import java.util.Date;

import com.thinkgem.jeesite.common.persistence.DataEntity;

/**
 * 赛事酒店Entity
 * @author cxt
 * @version 2017-08-02
 */
public class ShowHotel extends DataEntity<ShowHotel> {
	
	private static final long serialVersionUID = 1L;
	private String hotelPhone;		// 酒店电话
	private String hotelAddress;		// 酒店地址
	private String hotelName;		// 酒店名称
	private String hotelInfo;		// 酒店更多信息

	public ShowHotel() {
		super();
	}

	public ShowHotel(String id){
		super(id);
	}

	public String getHotelPhone() {
		return hotelPhone;
	}

	public void setHotelPhone(String hotelPhone) {
		this.hotelPhone = hotelPhone;
	}

	public String getHotelAddress() {
		return hotelAddress;
	}

	public void setHotelAddress(String hotelAddress) {
		this.hotelAddress = hotelAddress;
	}
	
	public String getHotelName() {
		return hotelName;
	}

	public void setHotelName(String hotelName) {
		this.hotelName = hotelName;
	}
	
	public String getHotelInfo() {
		return hotelInfo;
	}

	public void setHotelInfo(String hotelInfo) {
		this.hotelInfo = hotelInfo;
	}
	

}