You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
1.6 KiB
85 lines
1.6 KiB
package com.power.travel.model;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Id;
|
|
import javax.persistence.Table;
|
|
import java.util.Date;
|
|
|
|
@Entity
|
|
@Table(name = "hotel")
|
|
public class Hotel {
|
|
|
|
@Id
|
|
@Column(name = "id")
|
|
private String id;
|
|
@Column(name = "image")
|
|
private String image;
|
|
@Column(name = "hotelName")
|
|
private String name;
|
|
@Column(name = "hotelAddress")
|
|
private String address;
|
|
@Column(name = "hotelDescribe")
|
|
private String describe;
|
|
@Column(name = "HotelStatus")
|
|
private Integer status;
|
|
@Column(name = "createDate")
|
|
private Date createDate;
|
|
|
|
public Date getCreateDate() {
|
|
return createDate;
|
|
}
|
|
|
|
public void setCreateDate(Date createDate) {
|
|
this.createDate = createDate;
|
|
}
|
|
|
|
public String getAddress() {
|
|
return address;
|
|
}
|
|
|
|
public void setAddress(String address) {
|
|
this.address = address;
|
|
}
|
|
|
|
public Integer getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(Integer status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getImage() {
|
|
return image;
|
|
}
|
|
|
|
public void setImage(String image) {
|
|
this.image = image;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getDescribe() {
|
|
return describe;
|
|
}
|
|
|
|
public void setDescribe(String describe) {
|
|
this.describe = describe;
|
|
}
|
|
}
|