?? memberform.java
字號:
package com.wy.domain;
import org.apache.struts.action.ActionForm;
//會(huì)員表的bean
public class MemberForm extends ActionForm {
private Integer age = 1; // 年齡
private String email = ""; // 電子郵件
private Integer id = 1; // 數(shù)據(jù)庫流水號
private String name = ""; // 會(huì)員名稱
private String password = ""; // 會(huì)員密碼
private String profession = ""; // 會(huì)員職業(yè)
private String question = ""; // 找回密碼的問題
private String reallyName = ""; // 真實(shí)姓名
private String result = ""; // 找回密碼的答案
public MemberForm() {
}
public Integer getAge() {
return age;
}
public void setAge(Integer age) {
this.age = age;
}
public void setResult(String result) {
this.result = result;
}
public void setReallyName(String reallyName) {
this.reallyName = reallyName;
}
public void setQuestion(String question) {
this.question = question;
}
public void setProfession(String profession) {
this.profession = profession;
}
public void setPassword(String password) {
this.password = password;
}
public void setName(String name) {
this.name = name;
}
public void setId(Integer id) {
this.id = id;
}
public void setEmail(String email) {
this.email = email;
}
public String getEmail() {
return email;
}
public Integer getId() {
return id;
}
public String getName() {
return name;
}
public String getPassword() {
return password;
}
public String getProfession() {
return profession;
}
public String getQuestion() {
return question;
}
public String getReallyName() {
return reallyName;
}
public String getResult() {
return result;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -