rentingentitybean.java

来自「Java Application using EJB 3.0 for renti」· Java 代码 · 共 118 行

JAVA
118
字号
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package Entities;import java.io.Serializable;import javax.persistence.Entity;import javax.persistence.GeneratedValue;import javax.persistence.GenerationType;import javax.persistence.Id;/** * * @author kiriashoo */@Entitypublic class RentingEntityBean implements Serializable {    private static final long serialVersionUID = 1L;    @Id    @GeneratedValue(strategy = GenerationType.AUTO)    private Integer id;    private int carId;    private int userId;    private String startDate;    private String endDate;    public Integer getId() {        return id;    }    public void setId(Integer id) {        this.id = id;    }    @Override    public int hashCode() {        int hash = 0;        hash += (id != null ? id.hashCode() : 0);        return hash;    }    @Override    public boolean equals(Object object) {        // TODO: Warning - this method won't work in the case the id fields are not set        if (!(object instanceof RentingEntityBean)) {            return false;        }        RentingEntityBean other = (RentingEntityBean) object;        if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) {            return false;        }        return true;    }    @Override    public String toString() {        return "entities.RentEntityBean[id=" + id + "]";    }    /**     * @return the carId     */    public int getCarId() {        return carId;    }    /**     * @param carId the carId to set     */    public void setCarId(int carId) {        this.carId = carId;    }    /**     * @return the userId     */    public int getUserId() {        return userId;    }    /**     * @param userId the userId to set     */    public void setUserId(int userId) {        this.userId = userId;    }    /**     * @return the sDate     */    public String getSDate() {        return startDate;    }    /**     * @param sDate the sDate to set     */    public void setSDate(String startDate) {        this.startDate = startDate;    }    /**     * @return the eDate     */    public String getEDate() {        return endDate;    }    /**     * @param eDate the eDate to set     */    public void setEDate(String endDate) {        this.endDate = endDate;    }}

⌨️ 快捷键说明

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