notice.java

来自「ssh做的oa」· Java 代码 · 共 41 行

JAVA
41
字号
/* * Created Tue Aug 28 18:29:28 CST 2007 by MyEclipse Hibernate Tool. */ package com.demo.hibernate.beans;import java.io.Serializable;/** * A class that represents a row in the 'notice' table.  * This class may be customized as it is never re-generated  * after being created. */public class Notice    extends AbstractNotice    implements Serializable{    /**	 * 	 */	private static final long serialVersionUID = 8084533983785011912L;	/**     * Simple constructor of Notice instances.     */    public Notice()    {    }    /**     * Constructor of Notice instances given a simple primary key.     * @param id     */    public Notice(java.lang.Integer id)    {        super(id);    }    /* Add customized code below */}

⌨️ 快捷键说明

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