|
|
@@ -61,6 +61,10 @@ public class Booking {
|
|
|
|
|
|
private String lockTime; // 锁定时间
|
|
|
|
|
|
+ private Integer hstatus;//酒店营业状态(1 营业 2.休息)
|
|
|
+
|
|
|
+ private Integer hotelStatus;//酒店状态(0删除 1正常,2冻结)
|
|
|
+
|
|
|
private List<FileInfo> houseFileInfoList; // 房型详细图
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
|
@@ -497,4 +501,20 @@ public class Booking {
|
|
|
public void setStatus_del(int status_del) {
|
|
|
this.status_del = status_del;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getHstatus() {
|
|
|
+ return hstatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHstatus(Integer hstatus) {
|
|
|
+ this.hstatus = hstatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getHotelStatus() {
|
|
|
+ return hotelStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHotelStatus(Integer hotelStatus) {
|
|
|
+ this.hotelStatus = hotelStatus;
|
|
|
+ }
|
|
|
}
|