user.java.svn-base
来自「在线书库系统 查看图书 编写文章 管理员管理」· SVN-BASE 代码 · 共 38 行
SVN-BASE
38 行
package StoryManage.Dal;
import java.util.Date;
/**
* User entity.
*
* @author MyEclipse Persistence Tools
*/
public class User extends AbstractUser implements java.io.Serializable {
// Constructors
/** default constructor */
public User() {
}
/** minimal constructor */
public User(Date regTime, Integer money, Integer integral, String regName,
String password, Date lastLoginTime, Integer loginCount,
Integer isShield, Integer isPass, Integer isVote) {
super(regTime, money, integral, regName, password, lastLoginTime,
loginCount, isShield, isPass, isVote);
}
/** full constructor */
public User(String realName, Integer sex, Date birth, Date regTime,
Integer money, Integer integral, String regName, String password,
String email, String qq, Date lastLoginTime, Integer loginCount,
Integer isShield, Date shieldTime, Date shieldLast, Integer isPass,
Integer isVote) {
super(realName, sex, birth, regTime, money, integral, regName,
password, email, qq, lastLoginTime, loginCount, isShield,
shieldTime, shieldLast, isPass, isVote);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?