?? userinfo.java
字號(hào):
/* * Created Thu Sep 01 18:37:11 CST 2005 by MyEclipse Hibernate Tool. */ package org.ithinking.strutsExample.entity;import java.io.Serializable;/** * A class that represents a row in the 'userinfo' table. * This class may be customized as it is never re-generated * after being created. */public class Userinfo extends AbstractUserinfo implements Serializable{ /** * Simple constructor of Userinfo instances. */ public Userinfo() { } /** * Constructor of Userinfo instances given a simple primary key. * @param id */ public Userinfo(java.lang.Integer id) { super(id); } /* Add customized code below */}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -