📄 account.java
字号:
/* * XP Forum * * Copyright (c) 2002-2003 RedSoft Group. All rights reserved. * */package org.redsoft.forum.dao;/** * This class represents a user account and used as a value object * * @@author Charles Huang * @@version 1.0 * * @hibernate.class table="account" */public class Account extends PersistentAccount{ /** * Default constructor for hibernate */ public Account() { } /** * Construct a new Account, default is not a columnWriter * * @param userName * @param password * @param email */ public Account(String userName, String password, String email) { super(userName, password, email); } /** * Construct a new Account * @param userName * @param password * @param email * @param columnWriter */ public Account(String userName, String password, String email, boolean columnWriter) { super(userName, password, email, columnWriter); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -