user.java

来自「在线读书交流平台」· Java 代码 · 共 35 行

JAVA
35
字号
package com.olr.beans;

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(String username, String password, Integer power, String email) {
		super(username, password, power, email);
	}

	/** full constructor */
	public User(String username, String password, Integer power, String email,
			String realname, Date birthday, String phone, String qqmsn,
			Integer sex, String discription, String imagePath,
			Integer point, Integer rank, Integer loginCount, String country,
			String province, String city) {
		super(username, password, power, email, realname, birthday, phone,
				qqmsn, sex, discription, imagePath, point, rank, loginCount,
				country, province, city);
	}

}

⌨️ 快捷键说明

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