• Hibernate中使用Criteria查询及注解——(Dept.java)


    Dept.java:

         部门表的实体类:

    package cn.bdqn.hibernate_Criteria.entity;
    
    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * 部门表的实体类
     * @author 1111
     *
     */
    public class Dept implements java.io.Serializable {
    
    	// Fields
    
    	private Integer deptno;
    	private String dname;
    	private String loc;
    	private Set emps = new HashSet(0);
    
    	// Constructors
    
    	/** default constructor */
    	public Dept() {
    	}
    
    	/** minimal constructor */
    	public Dept(Integer deptno) {
    		this.deptno = deptno;
    	}
    
    	/** full constructor */
    	public Dept(Integer deptno, String dname, String loc, Set emps) {
    		this.deptno = deptno;
    		this.dname = dname;
    		this.loc = loc;
    		this.emps = emps;
    	}
    
    	// Property accessors
    
    	public Integer getDeptno() {
    		return this.deptno;
    	}
    
    	public void setDeptno(Integer deptno) {
    		this.deptno = deptno;
    	}
    
    	public String getDname() {
    		return this.dname;
    	}
    
    	public void setDname(String dname) {
    		this.dname = dname;
    	}
    
    	public String getLoc() {
    		return this.loc;
    	}
    
    	public void setLoc(String loc) {
    		this.loc = loc;
    	}
    
    	public Set getEmps() {
    		return this.emps;
    	}
    
    	public void setEmps(Set emps) {
    		this.emps = emps;
    	}
    
    }


  • 相关阅读:
    Java基础模拟LinkedList的双向链表结构
    对thrift版本降级(mac)
    通信技术类网站
    Arista和他的EOS
    程序员的英文能力培养
    挖掘时间的价值
    写作的方法论
    SRv6相关资源汇总
    你不必有自己的写作优势领域
    20192416汇编语言学习总结
  • 原文地址:https://www.cnblogs.com/a1111/p/7459771.html
Copyright © 2020-2023  润新知