📄 208c5315b90d001c1427d7c19e224211
字号:
package com.housesale.entity;
import java.io.Serializable;import java.util.Set;import org.apache.commons.lang.builder.ToStringBuilder;
/** @author Hibernate CodeGenerator */
public class Housestyle implements Serializable {
/** identifier field */
private Integer styleId;
/** nullable persistent field */
private String styleName;
/** nullable persistent field */
private String buildingArea;
/** nullable persistent field */
private String insideArea;
/** nullable persistent field */
private String others;
/** nullable persistent field */
private Double price;
/** nullable persistent field */
private byte[] image;
/** nullable persistent field */
private String bz;
/** persistent field */
private com.housesale.entity.Building building;
/** persistent field */
private Set houses;
/** full constructor */
public Housestyle(Integer styleId, String styleName, String buildingArea, String insideArea, String others, Double price, byte[] image, String bz, com.housesale.entity.Building building, Set houses) {
this.styleId = styleId;
this.styleName = styleName;
this.buildingArea = buildingArea;
this.insideArea = insideArea;
this.others = others;
this.price = price;
this.image = image;
this.bz = bz;
this.building = building;
this.houses = houses;
}
/** default constructor */
public Housestyle() {
}
/** minimal constructor */
public Housestyle(Integer styleId, com.housesale.entity.Building building, Set houses) {
this.styleId = styleId;
this.building = building;
this.houses = houses;
}
/** * auto_increment * */
public Integer getStyleId() {
return this.styleId;
}
public void setStyleId(Integer styleId) {
this.styleId = styleId;
}
public String getStyleName() {
return this.styleName;
}
public void setStyleName(String styleName) {
this.styleName = styleName;
}
public String getBuildingArea() {
return this.buildingArea;
}
public void setBuildingArea(String buildingArea) {
this.buildingArea = buildingArea;
}
public String getInsideArea() {
return this.insideArea;
}
public void setInsideArea(String insideArea) {
this.insideArea = insideArea;
}
public String getOthers() {
return this.others;
}
public void setOthers(String others) {
this.others = others;
}
public Double getPrice() {
return this.price;
}
public void setPrice(Double price) {
this.price = price;
}
public byte[] getImage() {
return this.image;
}
public void setImage(byte[] image) {
this.image = image;
}
public String getBz() {
return this.bz;
}
public void setBz(String bz) {
this.bz = bz;
}
public com.housesale.entity.Building getBuilding() {
return this.building;
}
public void setBuilding(com.housesale.entity.Building building) {
this.building = building;
}
public Set getHouses() {
return this.houses;
}
public void setHouses(Set houses) {
this.houses = houses;
}
public String toString() {
return new ToStringBuilder(this)
.append("styleId", getStyleId())
.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -