motherboardsbean.java~2~
来自「些程序用java实现一个装机程序,不过是一个C/S架构,但是在数据库的设计方面与」· JAVA~2~ 代码 · 共 84 行
JAVA~2~
84 行
package pcdiysystem.Beans;
import java.io.*;
/**
* <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;
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;
}
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 + =
减小字号Ctrl + -
显示快捷键?