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

📄 computer.java~2~

📁 ACCP课程中的商业程序网吧管理系统
💻 JAVA~2~
字号:
package com.jbaptech.accp.netbar.server.entity;

import java.io.Serializable;

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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -