⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 motherboardsbean.java~2~

📁 些程序用java实现一个装机程序,不过是一个C/S架构,但是在数据库的设计方面与3层架构的构造方案我想对一些朋友还是否有一定的帮助吧
💻 JAVA~2~
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -