package com.house.entity;
import java.util.HashSet;
import java.util.Set;
/**
* House entity.
*
* @author MyEclipse Persistence Tools
*/
public class House implements java.io.Serializable {
// Fields
private String houseId;
private HouseStructs houseStructs;
private Jd jd;
private ChaoXiang chaoXiang;
private HouseStyle houseStyle;
private FitmentType fitmentType;
private WuYeType wuYeType;
private LookTime lookTime;
private InfoFrom infoFrom;
private Employee employee;
private HouseType houseType;
private HouseProperty houseProperty;
private State state;
private Person person;
private String houseName;
private String wuYe;
private String address;
private Integer houseFloor;
private Integer allfloor;
private Integer shi;
private Integer ting;
private Integer wei;
private Integer buildArea;
private Integer useArea;
private String age;
private String ownerName;
private String ownerContact;
private String traffic;
private String remark;
private String deviceId;
private Integer encrypt;
private String writeTime;
private String updateTime;
private Integer houseMoneyId;
private Integer housecount;
private Integer nowStateId;
private Set follows = new HashSet(0);
private Set bargains = new HashSet(0);
private Set imageInfos = new HashSet(0);
private Set houseAndDevices = new HashSet(0);
private Set leaveWords = new HashSet(0);
// Constructors
/** default constructor */
public House() {
}
/** minimal constructor */
public House(String houseId, ChaoXiang chaoXiang, Employee employee,
HouseType houseType, State state, Person person, String address,
String ownerName, String ownerContact, Integer encrypt,
String writeTime, String updateTime, Integer houseMoneyId,
Integer housecount, Integer nowStateId) {
this.houseId = houseId;
this.chaoXiang = chaoXiang;
this.employee = employee;
this.houseType = houseType;
this.state = state;
this.person = person;
this.address = address;
this.ownerName = ownerName;
this.ownerContact = ownerContact;
this.encrypt = encrypt;
this.writeTime = writeTime;
this.updateTime = updateTime;
this.houseMoneyId = houseMoneyId;
this.housecount = housecount;
this.nowStateId = nowStateId;
}
/** full constructor */
public House(String houseId, HouseStructs houseStructs, Jd jd,
ChaoXiang chaoXiang, HouseStyle houseStyle,
FitmentType fitmentType, WuYeType wuYeType, LookTime lookTime,
InfoFrom infoFrom, Employee employee, HouseType houseType,
HouseProperty houseProperty, State state, Person person,
String houseName, String wuYe, String address, Integer houseFloor,
Integer allfloor, Integer shi, Integer ting, Integer wei,
Integer buildArea, Integer useArea, String age, String ownerName,
String ownerContact, String traffic, String remark,
String deviceId, Integer encrypt, String writeTime,
String updateTime, Integer houseMoneyId, Integer housecount,
Integer nowStateId, Set follows, Set bargains, Set imageInfos,
Set houseAndDevices, Set leaveWords) {
this.houseId = houseId;
this.houseStructs = houseStructs;
this.jd = jd;
this.chaoXiang = chaoXiang;
this.houseStyle = houseStyle;
this.fitmentType = fitmentType;
this.wuYeType = wuYeType;
this.lookTime = lookTime;
this.infoFrom = infoFrom;
this.employee = employee;
this.houseType = houseType;
this.houseProperty = houseProperty;
this.state = state;
this.person = person;
this.houseName = houseName;
this.wuYe = wuYe;
this.address = address;
this.houseFloor = houseFloor;
this.allfloor = allfloor;
this.shi = shi;
this.ting = ting;
this.wei = wei;
this.buildArea = buildArea;
this.useArea = useArea;
this.age = age;
this.ownerName = ownerName;
this.ownerContact = ownerContact;
this.traffic = traffic;
this.remark = remark;
this.deviceId = deviceId;
this.encrypt = encrypt;
this.writeTime = writeTime;
this.updateTime = updateTime;
this.houseMoneyId = houseMoneyId;
this.housecount = housecount;
this.nowStateId = nowStateId;
this.follows = follows;
this.bargains = bargains;
this.imageInfos = imageInfos;
this.houseAndDevices = houseAndDevices;
this.leaveWords = leaveWords;
}
// Property accessors
public String getHouseId() {
return this.houseId;
}
public void setHouseId(String houseId) {
this.houseId = houseId;
}
public HouseStructs getHouseStructs() {
return this.houseStructs;
}
public void setHouseStructs(HouseStructs houseStructs) {
this.houseStructs = houseStructs;
}
public Jd getJd() {
return this.jd;
}
public void setJd(Jd jd) {
this.jd = jd;
}
public ChaoXiang getChaoXiang() {
return this.chaoXiang;
}
public void setChaoXiang(ChaoXiang chaoXiang) {
this.chaoXiang = chaoXiang;
}
public HouseStyle getHouseStyle() {
return this.houseStyle;
}
public void setHouseStyle(HouseStyle houseStyle) {
this.houseStyle = houseStyle;
}
public FitmentType getFitmentType() {
return this.fitmentType;
}
public void setFitmentType(FitmentType fitmentType) {
this.fitmentType = fitmentType;
}
public WuYeType getWuYeType() {
return this.wuYeType;
}
public void setWuYeType(WuYeType wuYeType) {
this.wuYeType = wuYeType;
}
public LookTime getLookTime() {
return this.lookTime;
}
public void setLookTime(LookTime lookTime) {
this.lookTime = lookTime;
}
public InfoFrom getInfoFrom() {
return this.infoFrom;
}
public void setInfoFrom(InfoFrom infoFrom) {
this.infoFrom = infoFrom;
}
public Employee getEmployee() {
return this.employee;
}
public void setEmployee(Employee employee) {
this.employee = employee;
}
public HouseType getHouseType() {
return this.houseType;
}
public void setHouseType(HouseType houseType) {
this.houseType = houseType;
}
public HouseProperty getHouseProperty() {
return this.houseProperty;
}
public void setHouseProperty(HouseProperty houseProperty) {
this.houseProperty = houseProperty;
}
public State getState() {
return this.state;
}
public void setState(State state) {
this.state = state;
}
public Person getPerson() {
return this.person;
}
public void setPerson(Person person) {
this.person = person;
}
public String getHouseName() {
return this.houseName;
}
public void setHouseName(String houseName) {
this.houseName = houseName;
}
public String getWuYe() {
return this.wuYe;
}
public void setWuYe(String wuYe) {
this.wuYe = wuYe;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public Integer getHouseFloor() {
return this.houseFloor;
}
public void setHouseFloor(Integer houseFloor) {
this.houseFloor = houseFloor;
}
public Integer getAllfloor() {
return this.allfloor;
}
public void setAllfloor(Integer allfloor) {
this.allfloor = allfloor;
}
public Integer getShi() {
return this.shi;
}
public void setShi(Integer shi) {
this.shi = shi;
}
public Integer getTing() {
return this.ting;
}
public void setTing(Integer ting) {
this.ting = ting;
}
public Integer getWei() {
return this.wei;
}
public void setWei(Integer wei) {
this.wei = wei;
}
public Integer getBuildArea() {
return this.buildArea;
}
public void setBuildArea(Integer buildArea) {
this.buildArea = buildArea;
}
public Integer getUseArea() {
return this.useArea;
}
public void setUseArea(Integer useArea) {
this.useArea = useArea;
}
public String getAge() {
return this.age;
}
public void setAge(String age) {
this.age = age;
}
public String getOwnerName() {
return this.ownerName;
}
public voi