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.
74 lines
1.3 KiB
74 lines
1.3 KiB
package com.lsy.model;
|
|
|
|
import java.util.Date;
|
|
|
|
public class Reserve {
|
|
|
|
|
|
private String roomN; //房间
|
|
private String service; //服务
|
|
private Date time; //预约日期
|
|
private String name; //姓名
|
|
private String num; //排队号
|
|
private String phone;
|
|
private String state;
|
|
|
|
public String getState() {
|
|
return state;
|
|
}
|
|
|
|
public void setState(String state) {
|
|
this.state = state;
|
|
}
|
|
|
|
public String getRoomN() {
|
|
return roomN;
|
|
}
|
|
|
|
public void setRoomN(String roomN) {
|
|
this.roomN = roomN;
|
|
}
|
|
|
|
public String getService() {
|
|
return service;
|
|
}
|
|
|
|
public void setService(String service) {
|
|
this.service = service;
|
|
}
|
|
|
|
public Date getTime() {
|
|
return time;
|
|
}
|
|
|
|
public void setTime(Date time) {
|
|
this.time = time;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getNum() {
|
|
return num;
|
|
}
|
|
|
|
public void setNum(String num) {
|
|
this.num = num;
|
|
}
|
|
|
|
public String getPhone() {
|
|
return phone;
|
|
}
|
|
|
|
public void setPhone(String phone) {
|
|
this.phone = phone;
|
|
}
|
|
|
|
|
|
}
|