📄 computer.java
字号:
package com.jbaptech.accp.netbar.server.entity;
import java.io.Serializable;
/**
* Class Computer description here.
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2005</p>
*
* <p>Company: 北京阿博泰克北大青鸟信息技术有限公司</p>
*
* @author luohao
* @version 1.0
*/
public class Computer
implements Serializable {
/**
* constructor.
*/
public Computer() {
}
/**
* id.
*/
private String id;
/**
* use flag.
*/
private String onUse;
/**
* notes.
*/
private String notes;
/**
* get id.
* @return String
*/
public String getId() {
return this.id;
}
/**
* get use flag.
* @return String
*/
public String getOnUse() {
return this.onUse;
}
/**
* get notes.
* @return String
*/
public String getNotes() {
return this.notes;
}
/**
* set id.
* @param strId String
*/
public void setId( String strId) {
this.id = strId;
}
/**
* set use flag.
* @param strOnUse String
*/
public void setOnUse( String strOnUse) {
this.onUse = strOnUse;
}
/**
* set notes.
* @param strNotes String
*/
public void setNotes( String strNotes) {
this.notes = strNotes;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -