computer.java~3~

来自「ACCP课程中的商业程序网吧管理系统」· JAVA~3~ 代码 · 共 52 行

JAVA~3~
52
字号
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 {
  public Computer() {
  }

  private String id;
  private String onUse;
  private String notes;

  public String getId(){
    return this.id;
  }

  public String getOnUse(){
  return this.onUse;
}

public String getNotes(){
   return this.notes;
}

 public void setId(String id){
   this.id = id;
 }

 public void setOnUse(String onUse){
   this.onUse = onUse;
 }

 public void setNotes(String notes){
    this.notes = notes;
 }


}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?