menuitem.java
来自「实现动态加载菜单」· Java 代码 · 共 36 行
JAVA
36 行
/* * Created Mon Dec 12 10:17:59 CST 2005 by MyEclipse Hibernate Tool. */ package com.Hibernate;import java.io.Serializable;/** * A class that represents a row in the 'menu_item' table. * This class may be customized as it is never re-generated * after being created. */public class MenuItem extends AbstractMenuItem implements Serializable{ /** * Simple constructor of MenuItem instances. */ public MenuItem() { } /** * Constructor of MenuItem instances given a simple primary key. * @param id */ public MenuItem(java.lang.Long id) { super(id); } /* Add customized code below */}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?