?? user.java
字號:
public class User {
private String no;
private String name;
private int age;
private String sex;
private String phone;
private String imagePath;
public String getNo(){
return no;
}
public void setNo(String no){
this.no = no;
}
public String getName(){
return name;
}
public void setName(String name){
this.name = name;
}
public Integer getAge(){
return age;
}
public void setAge(Integer age){
this.age = age;
}
public String getSex(){
return sex;
}
public void setSex(String sex){
this.sex = sex;
}
public String getPhone(){
return phone;
}
public void setPhone(String phone){
this.phone = phone;
}
public String getImagePath(){
return imagePath;
}
public void setImagePath(String imagePath){
this.imagePath = imagePath;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -