📄 admin.java
字号:
package ydh.admin;
// default package
/**
* Admin generated by MyEclipse Persistence Tools
*/
public class Admin extends org.apache.struts.action.ActionForm implements
java.io.Serializable {
// Fields
private Integer id;
private String password;
private String name;
private String telephone;
// Constructors
/** default constructor */
public Admin() {
}
/** full constructor */
public Admin(String password, String name, String telephone) {
this.password = password;
this.name = name;
this.telephone = telephone;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getTelephone() {
return this.telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -