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

📄 operationuserform.java

📁 struts+hibernate BBS mysql数据库 功能基本齐全
💻 JAVA
字号:
package com.elan.forum.forms;


import java.sql.Timestamp;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;

public class OperationUserForm extends ActionForm {
	private String username;
	private String password;
	private String trueName;
	private String sex;
	private String qq;
	private String icq;
	private String msn;
	private String email;
	private String address;
	
	private Timestamp regLateTime;
	private Integer logonTimes;
	private Timestamp lastLoginTime;
	private String lastLogonIp;
	private String phone;
	private String forumLevel;
	private Integer topicCount;
	private Integer faceType;
	private String userFace;
	private Timestamp birthday;
	private String marriage;
	private Integer forumPoints;
	private String forumLevelPic;
	private Integer deleteTopicCount;
	private Integer locked;

	public String getUsername() {
		return username;
	}

	public void setUsername(String username) {
		this.username = username;
	}

	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public String getTrueName() {
		return trueName;
	}

	public void setTrueName(String trueName) {

		this.trueName = trueName;
	}

	public String getSex() {
		return sex;
	}

	public void setSex(String sex) {
		this.sex = sex;
	}

	public String getQq() {
		return qq;
	}

	public void setQq(String qq) {
		this.qq = qq;
	}

	public String getIcq() {
		return icq;
	}

	public void setIcq(String icq) {
		this.icq = icq;
	}

	public String getMsn() {
		return msn;
	}

	public void setMsn(String msn) {
		this.msn = msn;
	}

	public String getEmail() {
		return email;
	}

	public void setEmail(String email) {
		this.email = email;
	}

	public String getAddress() {
		return address;
	}

	public void setAddress(String address) {
		this.address = address;
	}

	public Timestamp getRegLateTime() {
		return regLateTime;
	}

	public void setRegLateTime(Timestamp regLateTime) {
		this.regLateTime = regLateTime;
	}

	public Integer getLogonTimes() {
		return logonTimes;
	}

	public void setLogonTimes(Integer logonTimes) {
		this.logonTimes = logonTimes;
	}

	public Timestamp getLastLoginTime() {
		return lastLoginTime;
	}

	public void setLastLoginTime(Timestamp lastLoginTime) {
		this.lastLoginTime = lastLoginTime;
	}

	public String getLastLogonIp() {
		return lastLogonIp;
	}

	public void setLastLogonIp(String lastLogonIp) {
		this.lastLogonIp = lastLogonIp;
	}

	public String getPhone() {
		return phone;
	}

	public void setPhone(String phone) {
		this.phone = phone;
	}

	public String getForumLevel() {
		return forumLevel;
	}

	public void setForumLevel(String forumLevel) {
		this.forumLevel = forumLevel;
	}

	public Integer getTopicCount() {
		return topicCount;
	}

	public void setTopicCount(Integer topicCount) {
		this.topicCount = topicCount;
	}

	public Integer getFaceType() {
		return faceType;
	}

	public void setFaceType(Integer faceType) {
		this.faceType = faceType;
	}

	public String getUserFace() {
		return userFace;
	}

	public void setUserFace(String userFace) {
		this.userFace = userFace;
	}

	public Timestamp getBirthday() {
		return birthday;
	}

	public void setBirthday(Timestamp birthday) {
		this.birthday = birthday;
	}

	public String getMarriage() {
		return marriage;
	}

	public void setMarriage(String marriage) {
		this.marriage = marriage;
	}

	public Integer getForumPoints() {
		return forumPoints;
	}

	public void setForumPoints(Integer forumPoints) {
		this.forumPoints = forumPoints;
	}

	public String getForumLevelPic() {
		return forumLevelPic;
	}

	public void setForumLevelPic(String forumLevelPic) {
		this.forumLevelPic = forumLevelPic;
	}

	public Integer getDeleteTopicCount() {
		return deleteTopicCount;
	}

	public void setDeleteTopicCount(Integer deleteTopicCount) {
		this.deleteTopicCount = deleteTopicCount;
	}

	public Integer getLocked() {
		return locked;
	}

	public void setLocked(Integer locked) {
		this.locked = locked;
	}
	public ActionErrors validate(ActionMapping mapping,
			HttpServletRequest request) {
		return null;
	}

}

⌨️ 快捷键说明

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