codeindex.java

来自「struts+spring+hibernate自创框架」· Java 代码 · 共 54 行

JAVA
54
字号
/* * Created Mon Nov 12 15:22:31 CST 2007 by MyEclipse Hibernate Tool. */ package com.pegasus.framework.sys.pojo.vo;import java.io.Serializable;/** * A class that represents a row in the 'code_index' table.  * This class may be customized as it is never re-generated  * after being created. */public class CodeIndex    extends AbstractCodeIndex    implements Serializable{    /**     * Simple constructor of CodeIndex instances.     */    public CodeIndex()    {    }    /**     * Constructor of CodeIndex instances given a simple primary key.     * @param codeId     */    public CodeIndex(java.lang.String codeId)    {        super(codeId);    }	/**	 * @return	 */	@Override	public Long getId() {		// TODO Auto-generated method stub		return null;	}	/**	 * @param id	 */	@Override	public void setId(Long id) {		// TODO Auto-generated method stub			}    /* Add customized code below */}

⌨️ 快捷键说明

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