upcomputercomputerbean.java
来自「一个简单的机房管理系统 可以简单的实现查询,计费 上下机,充值等功能」· Java 代码 · 共 47 行
JAVA
47 行
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 + =
减小字号Ctrl + -
显示快捷键?