/* * Created Thu Mar 02 08:59:31 CST 2006 by MyEclipse Hibernate Tool. */ package lyzn.logic.hibernate; import java.io.Serializable; /** * A class that represents a row in the 'DEPT' table. * This class may be customized as it is never re-generated * after being created. */ public class Dept extends AbstractDept implements Serializable { /** * Simple constructor of Dept instances. */ public Dept() { } /** * Constructor of Dept instances given a simple primary key. * @param deptno */ public Dept(java.lang.Short deptno) { super(deptno); } /* Add customized code below */ }