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

📄 record.java~17~

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

import java.io.Serializable;

/**
 *
 * <p>Title: Record JavaBean</p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2005</p>
 *
 * <p>Company: 北京阿博泰克北大青鸟信息技术有限公司</p>
 *
 * @author luohao
 * @version 1.0
 */

public class Record
    implements Serializable {
  public Record() {
  }

  private int id;
  private String cardId;
  private String computerId;
  private String beginTime;
  private String endTime;
  private int fee;

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

  public String getCardId() {
    return this.cardId;
  }

  public String getComputerId() {
    return this.computerId;
  }

  public String getBeginTime(){
   return this.beginTime;
  }

  public String getEndTime(){
   return this.endTime;
}


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

  public void setCardId(String cardId) {
    this.cardId = cardId;
  }

  public void setComputerId(String computerId) {
    this.computerId = computerId;
  }

  public void setBeginTime(String beginTime){
    this.beginTime = beginTime;
  }

  public void setEndTime(String endTime){
    this.endTime = endTime;
  }

  public int getFee(){
    return this.fee;
  }
  public void setFee(int fee){
    this.fee = fee;
  }
}

⌨️ 快捷键说明

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