?? computer.java~2~
字號:
package com.jbaptech.accp.netbar.server.entity;
import java.io.Serializable;
public class Computer implements Serializable {
public Computer() {
}
private String id;
private String onUse;
private String notes;
public String getId(){
return this.id;
}
public String getOnUse(){
return this.onUse;
}
public String getNotes(){
return this.notes;
}
public void setId(String id){
this.id = id;
}
public void setOnUse(String onUse){
this.onUse = onUse;
}
public void setNotes(String notes){
this.notes = notes;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -