📄 processorsbean.java~5~
字号:
package pcdiysystem.Beans;import java.io.*;import java.util.Vector;/** * <p>Title: 自助装机系统</p> * * <p>Description: </p> * * <p>Copyright: Copyright (c) 2006</p> * * <p>Company: </p> * * @author kamiiyu * @version 1.0 */public class ProcessorsBean implements Serializable { private int id; private String manufacturerId; private String clockSpeed; private String type; private String fsbs; private String socket; private String price; private String storage; private String description; private Vector record; public ProcessorsBean() { } public int getId(){ return this.id; } public String getManufacturerId(){ return this.manufacturerId; } public String getClockSpeed(){ return this.clockSpeed; } public String getType(){ return this.type; } public String getFsbs(){ return this.fsbs; } public String getSocket(){ return this.socket; } public String getPrice(){ return this.price; } public String getStorage(){ return this.storage; } public String getDescription(){ return this.description; } public Vector getRecord(){ return this.record; } public void setId(int id){ this.id=id; } public void setManufacturerId(String manufacturerId){ this.manufacturerId=manufacturerId; } public void setClockSpeed(String clockSpeed){ this.clockSpeed=clockSpeed; } public void setType(String type){ this.type=type; } public void setFsbs(String fsbs){ this.fsbs=fsbs; } public void setSocket(String socket){ this.socket=socket; } public void setPrice(String price){ this.price=price; } public void setStorage(String storage){ this.storage=storage; } public void setDescription(String description){ this.description=description; } public void setRecord(Object item){ this.record.addElement(item); } private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException { ois.defaultReadObject(); } private void writeObject(ObjectOutputStream oos) throws IOException { oos.defaultWriteObject(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -