⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 emp.java

📁 ajax 例子. 包括:ajax实现级联菜单,下拉列表,dwr的使用. ajax总结文档. 以及相关ajax书籍等.
💻 JAVA
字号:
/* * Created Wed Nov 01 18:50:20 CST 2006 by MyEclipse Hibernate Tool. */ package com.star;import java.io.Serializable;/** * A class that represents a row in the 'emp' table.  * This class may be customized as it is never re-generated  * after being created. */public class Emp    extends AbstractEmp    implements Serializable{    /**     * Simple constructor of Emp instances.     */    public Emp()    {    }    /**     * Constructor of Emp instances given a simple primary key.     * @param id     */    public Emp(java.lang.Integer id)    {        super(id);    }    /* Add customized code below */}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -