⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 userinfo.java

📁 北大青鸟的jsp版本的BBS
💻 JAVA
字号:
/*
Author:青鸟学子
QQ:64578820
Msn:foart@hotmail.com
*/
package com.entity;

import java.util.Date;

public class UserInfo {
		private Integer uid;//用户id
		private String uname;//用户名
		private String upassword;//用户密码
		private Boolean usex;//用户性别
		private String uface;//用户头像路径
		private Date uregtime;//用户注册时间
		private Integer utype;//用户类型
		
		public Integer getUtype() {
			return utype;
		}
		public void setUtype(Integer utype) {
			this.utype = utype;
		}
		public Integer getUid() {
			return uid;
		}
		public void setUid(Integer uid) {
			this.uid = uid;
		}
		public String getUname() {
			return uname;
		}
		public void setUname(String uname) {
			this.uname = uname;
		}
		public String getUpassword() {
			return upassword;
		}
		public void setUpassword(String upassword) {
			this.upassword = upassword;
		}
		public Boolean getUsex() {
			return usex;
		}
		public void setUsex(Boolean usex) {
			this.usex = usex;
		}
		public String getUface() {
			return uface;
		}
		public void setUface(String uface) {
			this.uface = uface;
		}
		public Date getUregtime() {
			return uregtime;
		}
		public void setUregtime(Date uregtime) {
			this.uregtime = uregtime;
		}
	}

⌨️ 快捷键说明

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