parent
1007ca363a
commit
01a05df1fa
@ -0,0 +1,107 @@
|
|||||||
|
package com.msb.bean;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
public class Emp implements Serializable {
|
||||||
|
private Integer empno;
|
||||||
|
private String ename;
|
||||||
|
private String job;
|
||||||
|
private Integer mgr;
|
||||||
|
private Date hiredate;
|
||||||
|
private Double sal;
|
||||||
|
private Double comm;
|
||||||
|
private Integer deptno;
|
||||||
|
|
||||||
|
public Emp() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public Emp(Integer empno, String ename, String job, Integer mgr, Date hiredate, Double sal, Double comm, Integer deptno) {
|
||||||
|
this.empno = empno;
|
||||||
|
this.ename = ename;
|
||||||
|
this.job = job;
|
||||||
|
this.mgr = mgr;
|
||||||
|
this.hiredate = hiredate;
|
||||||
|
this.sal = sal;
|
||||||
|
this.comm = comm;
|
||||||
|
this.deptno = deptno;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getEmpno() {
|
||||||
|
return empno;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEmpno(Integer empno) {
|
||||||
|
this.empno = empno;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEname() {
|
||||||
|
return ename;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEname(String ename) {
|
||||||
|
this.ename = ename;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getJob() {
|
||||||
|
return job;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setJob(String job) {
|
||||||
|
this.job = job;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getMgr() {
|
||||||
|
return mgr;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMgr(Integer mgr) {
|
||||||
|
this.mgr = mgr;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getHiredate() {
|
||||||
|
return hiredate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setHiredate(Date hiredate) {
|
||||||
|
this.hiredate = hiredate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getSal() {
|
||||||
|
return sal;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSal(Double sal) {
|
||||||
|
this.sal = sal;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getComm() {
|
||||||
|
return comm;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setComm(Double comm) {
|
||||||
|
this.comm = comm;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getDeptno() {
|
||||||
|
return deptno;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDeptno(Integer deptno) {
|
||||||
|
this.deptno = deptno;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "Emp{" +
|
||||||
|
"empno=" + empno +
|
||||||
|
", ename='" + ename + '\'' +
|
||||||
|
", job='" + job + '\'' +
|
||||||
|
", mgr=" + mgr +
|
||||||
|
", hiredate=" + hiredate +
|
||||||
|
", sal=" + sal +
|
||||||
|
", comm=" + comm +
|
||||||
|
", deptno=" + deptno +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue