📄 user.java
字号:
package jspD;
public class User{
private String id;
private String name;
private String pwd;
private int type;
private String email;
private String tgh;
private int ID;
public void setID(int id){
this.ID=id;
}
public int getID(){
return this.ID;
}
public void setTgh(String name){
this.tgh=name;
}
public String getTgh(){
return this.tgh;
}
public void setName(String name){
this.name=name;
}
public String getName(){
return this.name;
}
public void setType(int type){
this.type=type;
}
public int getType(){
return this.type;
}
public void setPwd(String pwd){
this.pwd=pwd;
}
public String getPwd(){
return this.pwd;
}
public void setEmail(String email){
this.email=email;
}
public String getEmail(){
return this.email;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -