worktoolbuybean.java

来自「jdo开发实例,一个功能全面的oa系统」· Java 代码 · 共 72 行

JAVA
72
字号
package com.gzrealmap.oa.worktool;

/**
 * <p>Title: 基本类库</p>
 * <p>Description: 基本类库</p>
 * <p>Copyright: Copyright (c) 2003</p>
 * <p>Company: 广州瑞图(gzrealmap.com)</p>
 * @author huson
 * @version 1.0
 */

public class WorkToolBuyBean {
  private int buyID;
  private int userID;
  private String buyTime;
  private int count;
  private String cost;
  private int realIn;
  private String remark;
  private WorkToolBean workToolID;
  public WorkToolBuyBean() {
  }
  public int getBuyID() {
    return buyID;
  }
  public void setBuyID(int buyID) {
    this.buyID = buyID;
  }
  public int getUserID() {
    return userID;
  }
  public void setUserID(int userID) {
    this.userID = userID;
  }
  public String getBuyTime() {
    return buyTime;
  }
  public void setBuyTime(String buyTime) {
    this.buyTime = buyTime;
  }
  public int getCount() {
    return count;
  }
  public void setCount(int count) {
    this.count = count;
  }
  public String getCost() {
    return cost;
  }
  public void setCost(String cost) {
    this.cost = cost;
  }
  public int getRealIn() {
    return realIn;
  }
  public void setRealIn(int realIn) {
    this.realIn = realIn;
  }
  public String getRemark() {
    return remark;
  }
  public void setRemark(String remark) {
    this.remark = remark;
  }
  public WorkToolBean getWorkToolID() {
    return workToolID;
  }
  public void setWorkToolID(WorkToolBean workToolID) {
    this.workToolID = workToolID;
  }

}

⌨️ 快捷键说明

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