zoukankan      html  css  js  c++  java
  • javaWeb服务详解(含源代码,测试通过,注释) ——Dept实体类

    package org.entity;
    
    import java.util.HashSet;
    import java.util.Set;
    
    import javax.xml.bind.annotation.XmlTransient;
    
    /**
     * Dept entity. @author MyEclipse Persistence Tools
     */
    
    public class Dept implements java.io.Serializable {
    
    	// Fields
    
    	private Integer deptno;
    	private String dname;
    	private String loc;
    	private Set<Emp> emps = new HashSet<Emp>(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;
    	}
    
    	@XmlTransient
    	public Set<Emp> getEmps() {
    		return emps;
    	}
    
    	public void setEmps(Set<Emp> emps) {
    		this.emps = emps;
    	}
    
    }

    Dept的hbm.xml详细代码:

    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
    <!-- 
        Mapping file autogenerated by MyEclipse Persistence Tools
    -->
    <hibernate-mapping>
        <class name="org.entity.Dept" table="DEPT" schema="PRO">
            <id name="deptno" type="java.lang.Integer">
                <column name="DEPTNO" precision="9" scale="0" />
                <generator class="assigned" />
            </id>
            <property name="dname" type="java.lang.String">
                <column name="DNAME" length="30" />
            </property>
            <property name="loc" type="java.lang.String">
                <column name="LOC" length="30" />
            </property>
            <set name="emps" inverse="true" >
                <key>
                    <column name="DEPTNO" precision="9" scale="0" />
                </key>
                <one-to-many class="org.entity.Emp" />
            </set>
        </class>
    </hibernate-mapping>
    


  • 相关阅读:
    git 码云
    keras训练cnn模型时loss为nan
    将矩阵补齐0
    将dataframe分割为训练集和测试集两部分
    另存了一次网页之后其它word打开格式都变了
    python 判断字符串是否为(或包含)IP地址
    为多维数组添加一列以及reshape用法注意
    memory error python报错
    列表转换为三维矩阵
    LaTeX参考文献出现问号
  • 原文地址:https://www.cnblogs.com/a1111/p/12816241.html
Copyright © 2011-2022 走看看