
本文共 3093 字,大约阅读时间需要 10 分钟。
Emp.java
���������Emp.java���������������������������������������������������
```javapackage org.entity;import java.util.Date;/** * Emp entity. * @author MyEclipse Persistence Tools */public class Emp implements java.io.Serializable { // Fields private Integer empno; private Dept dept; private String ename; private String job; private Short mgr; private Date hiredate; private Double sal; private Double comm; // Constructors /** default constructor */ public Emp() { } /** minimal constructor */ public Emp(Integer empno) { this.empno = empno; } /** full constructor */ public Emp(Integer empno, Dept dept, String ename, String job, Short mgr, Date hiredate, Double sal, Double comm) { this.empno = empno; this.dept = dept; this.ename = ename; this.job = job; this.mgr = mgr; this.hiredate = hiredate; this.sal = sal; this.comm = comm; } // Property accessors public Integer getEmpno() { return this.empno; } public void setEmpno(Integer empno) { this.empno = empno; } public Dept getDept() { return this.dept; } public void setDept(Dept dept) { this.dept = dept; } public String getEname() { return this.ename; } public void setEname(String ename) { this.ename = ename; } public String getJob() { return this.job; } public void setJob(String job) { this.job = job; } public Short getMgr() { return this.mgr; } public void setMgr(Short mgr) { this.mgr = mgr; } public Date getHiredate() { return this.hiredate; } public void setHiredate(Date hiredate) { this.hiredate = hiredate; } public Double getSal() { return this.sal; } public void setSal(Double sal) { this.sal = sal; } public Double getComm() { return this.comm; } public void setComm(Double comm) { this.comm = comm; }}
���������Emp.java������hibernate���������������������Hibernate���������
Emp.java������������������������������������������������������������������ EMP������������
������������������empno���dept���ename���job���mgr���hiredate���sal���comm���������
Emp.java������������������������������������������������������������������������
hibernate-mapping.xml���������������Emp������������������������������������������
������78173��������������� Kempno������������������������������������
Dept������������������������������������������������������
Ename���JOB���mgr���������������������������������������������������
hiredate������������������������������������������������java.util.Date������
sal���comm������������������������������������������
```发表评论
最新留言
关于作者
