⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 10b85a15b90d001c1427d7c19e224211

📁 一个购房管理系统,JSF+Hibernate+Mssql2
💻
字号:
package com.housesale.entity;

import java.io.Serializable;import java.util.Date;import java.util.Set;import org.apache.commons.lang.builder.ToStringBuilder;

/** @author Hibernate CodeGenerator */
public class Community implements Serializable {

    /** identifier field */
    private Integer communityId;

    /** nullable persistent field */
    private String communityName;

    /** nullable persistent field */
    private String address;

    /** nullable persistent field */
    private String developer;

    /** nullable persistent field */
    private String tel1;

    /** nullable persistent field */
    private String tel2;

    /** nullable persistent field */
    private String sellingAgents;

    /** nullable persistent field */
    private String property;

    /** nullable persistent field */
    private Date publishTime;

    /** nullable persistent field */
    private Short state;

    /** nullable persistent field */
    private String introduce;

    /** nullable persistent field */
    private byte[] image1;

    /** nullable persistent field */
    private byte[] image2;

    /** nullable persistent field */
    private byte[] image3;

    /** nullable persistent field */
    private byte[] image4;

    /** nullable persistent field */
    private byte[] image5;

    /** nullable persistent field */
    private byte[] image6;

    /** nullable persistent field */
    private String bz;

    /** persistent field */
    private Set buildings;

    /** full constructor */
    public Community(Integer communityId, String communityName, String address, String developer, String tel1, String tel2, String sellingAgents, String property, Date publishTime, Short state, String introduce, byte[] image1, byte[] image2, byte[] image3, byte[] image4, byte[] image5, byte[] image6, String bz, Set buildings) {
        this.communityId = communityId;
        this.communityName = communityName;
        this.address = address;
        this.developer = developer;
        this.tel1 = tel1;
        this.tel2 = tel2;
        this.sellingAgents = sellingAgents;
        this.property = property;
        this.publishTime = publishTime;
        this.state = state;
        this.introduce = introduce;
        this.image1 = image1;
        this.image2 = image2;
        this.image3 = image3;
        this.image4 = image4;
        this.image5 = image5;
        this.image6 = image6;
        this.bz = bz;
        this.buildings = buildings;
    }

    /** default constructor */
    public Community() {
    }

    /** minimal constructor */
    public Community(Integer communityId, Set buildings) {
        this.communityId = communityId;
        this.buildings = buildings;
    }

    /**      * 		       auto_increment     * 		         */
    public Integer getCommunityId() {
        return this.communityId;
    }

    public void setCommunityId(Integer communityId) {
        this.communityId = communityId;
    }

    public String getCommunityName() {
        return this.communityName;
    }

    public void setCommunityName(String communityName) {
        this.communityName = communityName;
    }

    public String getAddress() {
        return this.address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    public String getDeveloper() {
        return this.developer;
    }

    public void setDeveloper(String developer) {
        this.developer = developer;
    }

    public String getTel1() {
        return this.tel1;
    }

    public void setTel1(String tel1) {
        this.tel1 = tel1;
    }

    public String getTel2() {
        return this.tel2;
    }

    public void setTel2(String tel2) {
        this.tel2 = tel2;
    }

    public String getSellingAgents() {
        return this.sellingAgents;
    }

    public void setSellingAgents(String sellingAgents) {
        this.sellingAgents = sellingAgents;
    }

    public String getProperty() {
        return this.property;
    }

    public void setProperty(String property) {
        this.property = property;
    }

    public Date getPublishTime() {
        return this.publishTime;
    }

    public void setPublishTime(Date publishTime) {
        this.publishTime = publishTime;
    }

    public Short getState() {
        return this.state;
    }

    public void setState(Short state) {
        this.state = state;
    }

    public String getIntroduce() {
        return this.introduce;
    }

    public void setIntroduce(String introduce) {
        this.introduce = introduce;
    }

    public byte[] getImage1() {
        return this.image1;
    }

    public void setImage1(byte[] image1) {
        this.image1 = image1;
    }

    public byte[] getImage2() {
        return this.image2;
    }

    public void setImage2(byte[] image2) {
        this.image2 = image2;
    }

    public byte[] getImage3() {
        return this.image3;
    }

    public void setImage3(byte[] image3) {
        this.image3 = image3;
    }

    public byte[] getImage4() {
        return this.image4;
    }

    public void setImage4(byte[] image4) {
        this.image4 = image4;
    }

    public byte[] getImage5() {
        return this.image5;
    }

    public void setImage5(byte[] image5) {
        this.image5 = image5;
    }

    public byte[] getImage6() {
        return this.image6;
    }

    public void setImage6(byte[] image6) {
        this.image6 = image6;
    }

    public String getBz() {
        return this.bz;
    }

    public void setBz(String bz) {
        this.bz = bz;
    }

    public Set getBuildings() {
        return this.buildings;
    }

    public void setBuildings(Set buildings) {
        this.buildings = buildings;
    }

    public String toString() {
        return new ToStringBuilder(this)
            .append("communityId", getCommunityId())
            .toString();
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -