userregisterform.java
来自「ssh2注册查询搜索分页实例ssh2注册查询搜索分页实例」· Java 代码 · 共 62 行
JAVA
62 行
package com.feiling.web.domain;
import com.feiling.dao.domain.User;
/*
* 如果懒惰,直接继承实体类也未尝不可
* */
public class UserRegisterForm extends User {
/*private String userName;
private String password;
private String email;
private String birthday;
/**
* @return the birthday
*
public String getBirthday() {
return birthday;
}
/**
* @param birthday the birthday to set
*
public void setBirthday(String birthday) {
this.birthday = birthday;
}
/**
* @return the userName
*
public String getUserName() {
return userName;
}
/**
* @param userName the userName to set
*
public void setUserName(String userName) {
this.userName = userName;
}
/**
* @return the password
*
public String getPassword() {
return password;
}
/**
* @param password the password to set
*
public void setPassword(String password) {
this.password = password;
}
/**
* @return the email
*
public String getEmail() {
return email;
}
/**
* @param email the email to set
*
public void setEmail(String email) {
this.email = email;
}*/
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?