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

📄 log.java

📁 JSP+Struts+缓存的公司管理系统
💻 JAVA
字号:
//---------------------------------------------------------
// Application: Company Applcation
// Author     : Cao guangxin
// File       : Log.java
//
// Copyright 2006 RelationInfo Software
// Writed at Wed Apr 12 08:58:55 CST 2006
// writed by Eclipse SDK
// Visit http://www.37signals.cn
//---------------------------------------------------------

package net.cn37signals.company.model;

public class Log {
  private long byteIn;
  private long byteOut;
  private float capacity;
  private double charge;
  private int year;
  private int month;

  public long getByteIn() {
    return byteIn;
  }
  public long getByteOut() {
    return byteOut;
  }
  public float getCapacity() {
    return capacity;
  }
  public double getCharge() {
    return charge;
  }
  public int getYear() {
    return year;
  }
  public int getMonth() {
    return month;
  }

  public void setByteIn(long byteIn) {
    this.byteIn = byteIn;
  }
  public void setByteOut(long byteOut) {
    this.byteOut = byteOut;
  }
  public void setCapacity(float capacity) {
    this.capacity = capacity;
  }
  public void setCharge(double charge) {
    this.charge = charge;
  }
  public void setYear(int year) {
    this.year = year;
  }
  public void setMonth(int month) {
    this.month = month;
  }
}

⌨️ 快捷键说明

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