📄 houseinfo.java
字号:
package com.qhit.kgdyffje.vo;
import java.util.Date;
/**
* Houseinfo entity.
*
* @author MyEclipse Persistence Tools
*/
public class Houseinfo implements java.io.Serializable {
// Fields
private int fwid;
private Userinfo userinfo;
private Channel channel;
private Housetype housetype;
private int shi;
private int ting;
private String fwxx;
private double zj;
private String title;
private Date udate;
private String cdate;
private String telephone;
private String lxr;
private String picture;
// Constructors
/** default constructor */
public Houseinfo() {
}
/** minimal constructor */
public Houseinfo(String title) {
this.title = title;
}
/** full constructor */
public Houseinfo(Userinfo userinfo, Channel channel, Housetype housetype,
int shi, int ting, String fwxx, double zj, String title,
Date udate, String telephone, String lxr, String picture) {
this.userinfo = userinfo;
this.channel = channel;
this.housetype = housetype;
this.shi = shi;
this.ting = ting;
this.fwxx = fwxx;
this.zj = zj;
this.title = title;
this.udate = udate;
this.telephone = telephone;
this.lxr = lxr;
this.picture = picture;
}
// Property accessors
public int getFwid() {
return this.fwid;
}
public void setFwid(int fwid) {
this.fwid = fwid;
}
public Userinfo getUserinfo() {
return this.userinfo;
}
public void setUserinfo(Userinfo userinfo) {
this.userinfo = userinfo;
}
public Channel getChannel() {
return this.channel;
}
public void setChannel(Channel channel) {
this.channel = channel;
}
public Housetype getHousetype() {
return this.housetype;
}
public void setHousetype(Housetype housetype) {
this.housetype = housetype;
}
public int getShi() {
return this.shi;
}
public void setShi(int shi) {
this.shi = shi;
}
public int getTing() {
return this.ting;
}
public void setTing(int ting) {
this.ting = ting;
}
public String getFwxx() {
return this.fwxx;
}
public void setFwxx(String fwxx) {
this.fwxx = fwxx;
}
public double getZj() {
return this.zj;
}
public void setZj(double zj) {
this.zj = zj;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public Date getUdate() {
return this.udate;
}
public void setUdate(Date udate) {
this.udate = udate;
}
public String getTelephone() {
return this.telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
public String getLxr() {
return this.lxr;
}
public void setLxr(String lxr) {
this.lxr = lxr;
}
public String getPicture() {
return this.picture;
}
public void setPicture(String picture) {
this.picture = picture;
}
public String getCdate() {
return cdate;
}
public void setCdate(String cdate) {
this.cdate = cdate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -