zoukankan      html  css  js  c++  java
  • Hibernate中使用Criteria查询及注解——(Emp.java)

    Emp.java

         员工表的实体类:

     

    package cn.bdqn.hibernate_Criteria.entity;
    
    import java.util.Date;
    
    /**
     * 员工表的实体类
     * @author Administrator
     *
     */
    public class Emp implements java.io.Serializable {
    
    
    	private Integer empno;
    	private Dept dept;
    	private String ename;
    	private String job;
    	private Integer 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, Integer 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 Integer getMgr() {
    		return this.mgr;
    	}
    
    	public void setMgr(Integer 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;
    	}
    
    }


  • 相关阅读:
    逐点分析,这样做Web端性能测试
    如何完成大数据测试-从功能测试角度分析
    自动化测试和手动测试利弊
    (一)SQL注入漏洞测试的方式总结
    如何设计一个完整的测试用例
    测试与开发、产品、上下级沟通、
    黑盒测试用例设计总结
    改变测试思路,你的性能测试才能更值钱!(下)
    20190923-03Linux时间日期类 000 011
    20190923-02Linux文件目录类 000 010
  • 原文地址:https://www.cnblogs.com/a1111/p/7459770.html
Copyright © 2011-2022 走看看