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

📄 20fd5515b90d001c1427d7c19e224211

📁 一个购房管理系统,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 Housesale implements Serializable {

    /** identifier field */
    private Integer saleId;

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

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

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

    /** nullable persistent field */
    private Double total;

    /** nullable persistent field */
    private Double salePayment;

    /** nullable persistent field */
    private Double payMoney;

    /** nullable persistent field */
    private Double remain;

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

    /** persistent field */
    private com.housesale.entity.Customer customer;

    /** persistent field */
    private com.housesale.entity.House house;

    /** persistent field */
    private Set payments;

    /** full constructor */
    public Housesale(Integer saleId, Date saleTime, String saleState, String saleManager, Double total, Double salePayment, Double payMoney, Double remain, String bz, com.housesale.entity.Customer customer, com.housesale.entity.House house, Set payments) {
        this.saleId = saleId;
        this.saleTime = saleTime;
        this.saleState = saleState;
        this.saleManager = saleManager;
        this.total = total;
        this.salePayment = salePayment;
        this.payMoney = payMoney;
        this.remain = remain;
        this.bz = bz;
        this.customer = customer;
        this.house = house;
        this.payments = payments;
    }

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

    /** minimal constructor */
    public Housesale(Integer saleId, com.housesale.entity.Customer customer, com.housesale.entity.House house, Set payments) {
        this.saleId = saleId;
        this.customer = customer;
        this.house = house;
        this.payments = payments;
    }

    /**      * 		       auto_increment     * 		         */
    public Integer getSaleId() {
        return this.saleId;
    }

    public void setSaleId(Integer saleId) {
        this.saleId = saleId;
    }

    public Date getSaleTime() {
        return this.saleTime;
    }

    public void setSaleTime(Date saleTime) {
        this.saleTime = saleTime;
    }

    public String getSaleState() {
        return this.saleState;
    }

    public void setSaleState(String saleState) {
        this.saleState = saleState;
    }

    public String getSaleManager() {
        return this.saleManager;
    }

    public void setSaleManager(String saleManager) {
        this.saleManager = saleManager;
    }

    public Double getTotal() {
        return this.total;
    }

    public void setTotal(Double total) {
        this.total = total;
    }

    public Double getSalePayment() {
        return this.salePayment;
    }

    public void setSalePayment(Double salePayment) {
        this.salePayment = salePayment;
    }

    public Double getPayMoney() {
        return this.payMoney;
    }

    public void setPayMoney(Double payMoney) {
        this.payMoney = payMoney;
    }

    public Double getRemain() {
        return this.remain;
    }

    public void setRemain(Double remain) {
        this.remain = remain;
    }

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

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

    public com.housesale.entity.Customer getCustomer() {
        return this.customer;
    }

    public void setCustomer(com.housesale.entity.Customer customer) {
        this.customer = customer;
    }

    public com.housesale.entity.House getHouse() {
        return this.house;
    }

    public void setHouse(com.housesale.entity.House house) {
        this.house = house;
    }

    public Set getPayments() {
        return this.payments;
    }

    public void setPayments(Set payments) {
        this.payments = payments;
    }

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

}

⌨️ 快捷键说明

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