📄 upcomputercomputerbean.java
字号:
package src.Bean;
/**
* 这是上机Computer Bean
* 机器ID
*/
public class UpComputerComputerBean {
private String ID;
private int onUse;
private String note;
public UpComputerComputerBean() {
try {
jbInit();
}
catch (Exception ex) {
ex.printStackTrace();
}
}
public void setID(String ID) {
this.ID = ID;
}
public String getID() {
return ID;
}
public void setOnUse(int onUse) {
this.onUse = onUse;
}
public void setNote(String note) {
this.note = note;
}
public int getOnUse() {
return onUse;
}
public String getNote() {
return note;
}
private void jbInit() throws Exception {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -