📄 userregisterform.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -