📄 roomdetail.java
字号:
package com.woyi.dto;
// default package
import java.util.Date;
/**
* RoomDetail generated by MyEclipse Persistence Tools
*/
public class RoomDetail implements java.io.Serializable {
// Fields
private Integer roomsDetailId;
private Integer roomsId;
private Integer clubId;
private String roomsId_1;
private String orderType;
private Integer roomStatus;
private Date begintime;
private Date endtime;
private String optrid;
private Date optdate;
private String custid;
private String custname;
private String custcertid;
private String custphone;
private String custtype;
private String remark;
private ClubInfo clubInfo;
private RoomInfo roomInfo;
// Constructors
public ClubInfo getClubInfo() {
return clubInfo;
}
public void setClubInfo(ClubInfo clubInfo) {
this.clubInfo = clubInfo;
}
public RoomInfo getRoomInfo() {
return roomInfo;
}
public void setRoomInfo(RoomInfo roomInfo) {
this.roomInfo = roomInfo;
}
/** default constructor */
public RoomDetail() {
}
/** minimal constructor */
public RoomDetail(String roomsId_1) {
this.roomsId_1 = roomsId_1;
}
/** full constructor */
public RoomDetail(Integer roomsId, String roomsId_1, String orderType, Integer roomStatus, Date begintime, Date endtime, String optrid, Date optdate, String custid, String custname, String custcertid, String custphone, String custtype, String remark,Integer clubId ) {
this.roomsId = roomsId;
this.roomsId_1 = roomsId_1;
this.orderType = orderType;
this.roomStatus = roomStatus;
this.begintime = begintime;
this.endtime = endtime;
this.optrid = optrid;
this.optdate = optdate;
this.custid = custid;
this.custname = custname;
this.custcertid = custcertid;
this.custphone = custphone;
this.custtype = custtype;
this.remark = remark;
this.clubId = clubId;
}
// Property accessors
public Integer getRoomsDetailId() {
return this.roomsDetailId;
}
public void setRoomsDetailId(Integer roomsDetailId) {
this.roomsDetailId = roomsDetailId;
}
public Integer getRoomsId() {
return this.roomsId;
}
public void setRoomsId(Integer roomsId) {
this.roomsId = roomsId;
}
public String getRoomsId_1() {
return this.roomsId_1;
}
public void setRoomsId_1(String roomsId_1) {
this.roomsId_1 = roomsId_1;
}
public Integer getRoomStatus() {
return this.roomStatus;
}
public void setRoomStatus(Integer roomStatus) {
this.roomStatus = roomStatus;
}
public Date getBegintime() {
return this.begintime;
}
public void setBegintime(Date begintime) {
this.begintime = begintime;
}
public Date getEndtime() {
return this.endtime;
}
public void setEndtime(Date endtime) {
this.endtime = endtime;
}
public String getOptrid() {
return this.optrid;
}
public void setOptrid(String optrid) {
this.optrid = optrid;
}
public Date getOptdate() {
return this.optdate;
}
public void setOptdate(Date optdate) {
this.optdate = optdate;
}
public String getCustid() {
return this.custid;
}
public void setCustid(String custid) {
this.custid = custid;
}
public String getCustname() {
return this.custname;
}
public void setCustname(String custname) {
this.custname = custname;
}
public String getCustcertid() {
return this.custcertid;
}
public void setCustcertid(String custcertid) {
this.custcertid = custcertid;
}
public String getCustphone() {
return this.custphone;
}
public void setCustphone(String custphone) {
this.custphone = custphone;
}
public String getCusttype() {
return this.custtype;
}
public void setCusttype(String custtype) {
this.custtype = custtype;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Integer getClubId() {
return clubId;
}
public void setClubId(Integer clubId) {
this.clubId = clubId;
}
public String getOrderType() {
return orderType;
}
public void setOrderType(String orderType) {
this.orderType = orderType;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -