📄 motherboardsbean.java~8~
字号:
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 kamiiiyu
* @version 1.0
*/
public class MotherboardsBean
implements Serializable {
private int id;
private String manufacturerId;
private String type;
private String socket;
private String chipset;
private String compatibleCPU;
private String videoInterface;
private String description;
private String storage;
private String price;
private Vector dataOfTable;
private Vector record=new Vector();
private Vector file=new Vector();
public MotherboardsBean() {
}
public int getId(){
return this.id;
}
public String getManufacturerId(){
return this.manufacturerId;
}
public String getType(){
return this.type;
}
public String getSocket(){
return this.socket;
}
public String getChipset(){
return this.chipset;
}
public String getCompatibleCPU(){
return this.compatibleCPU;
}
public String getVideoInterface(){
return this.videoInterface;
}
public String getDescription(){
return this.description;
}
public String getStorage(){
return this.storage;
}
public String getPrice(){
return this.price;
}
public Vector getDataOfTable(){
return this.dataOfTable;
}
public Vector getRecord(){
return this.record;
}
public Vector getFile(){
return this.file;
}
public void setId(int id){
this.id=id;
}
public void setManufacturerId(String manufacturerId){
this.manufacturerId=manufacturerId;
}
public void setType(String type){
this.type=type;
}
public void setSocket(String socket){
this.socket=socket;
}
public void setChipset(String chipset){
this.chipset=chipset;
}
public void setCompatibleCPU(String compatibleCPU){
this.compatibleCPU=compatibleCPU;
}
public void setVideoInterface(String videoInterface){
this.videoInterface=videoInterface;
}
public void setDescription(String description){
this.description=description;
}
public void setStorage(String storage){
this.storage=storage;
}
public void setPrice(String price){
this.price=price;
}
public void setdataOfTable(Vector dataOfTable){
this.dataOfTable=dataOfTable;
}
public void setRecord(Object element){
this.record.addElement(element);
}
public void setFile(Object element){
this.file.add(element);
}
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 + -