📄 hoteldetailinfo.java
字号:
package com.woyi.dto;
// default package
import java.util.Date;
/**
* HotelDetailInfo generated by MyEclipse Persistence Tools
*/
public class HotelDetailInfo implements java.io.Serializable {
// Fields
private Integer hotelsDetailId;
private Integer hotelsId;
private Integer clubId;
private String hotelname;
private Integer hotelstatus;
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 HotelInfo hotelInfo;
// Constructors
/** default constructor */
public HotelDetailInfo() {
}
/** full constructor */
public HotelDetailInfo(Integer hotelsId, Integer clubId, String hotelname, Integer hotelstatus, Date begintime, Date endtime, String optrid, Date optdate, String custid, String custname, String custcertid, String custphone, String custtype, String remark) {
this.hotelsId = hotelsId;
this.clubId = clubId;
this.hotelname = hotelname;
this.hotelstatus = hotelstatus;
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;
}
// Property accessors
public Integer getHotelsDetailId() {
return this.hotelsDetailId;
}
public void setHotelsDetailId(Integer hotelsDetailId) {
this.hotelsDetailId = hotelsDetailId;
}
public Integer getHotelsId() {
return this.hotelsId;
}
public void setHotelsId(Integer hotelsId) {
this.hotelsId = hotelsId;
}
public Integer getClubId() {
return this.clubId;
}
public void setClubId(Integer clubId) {
this.clubId = clubId;
}
public String getHotelname() {
return this.hotelname;
}
public void setHotelname(String hotelname) {
this.hotelname = hotelname;
}
public Integer getHotelstatus() {
return this.hotelstatus;
}
public void setHotelstatus(Integer hotelstatus) {
this.hotelstatus = hotelstatus;
}
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 ClubInfo getClubInfo() {
return clubInfo;
}
public void setClubInfo(ClubInfo clubInfo) {
this.clubInfo = clubInfo;
}
public HotelInfo getHotelInfo() {
return hotelInfo;
}
public void setHotelInfo(HotelInfo hotelInfo) {
this.hotelInfo = hotelInfo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -