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

📄 leaveapply.java

📁 在J2ME中实现虚拟代理
💻 JAVA
字号:
package com.qiny.leave;

public class LeaveApply {

  private int applyID; //申请ID 主键
  private String applicant; //申请人
  private String reason; //原因
  private String applyTime; //申请时间,为简单起见用字符串表示
  private int dayCount; //申请天数,在某种业务逻辑下,用作流程判断
  private long wfid; //所属工作流实例id

  public LeaveApply(){
  }

  public LeaveApply(String applicant,String reason,int dayCount){
    this.applicant = applicant;
    this.reason = reason;
    this.dayCount = dayCount;
  }

  public int getApplyID() {
    return applyID;
  }

  public String getApplicant() {
    return applicant;
  }

  public String getReason() {
    return reason;
  }

  public String getApplyTime() {
    return applyTime;
  }

  public int getDayCount() {
    return dayCount;
  }

  public long getWfid() {
    return wfid;
  }

  public void setApplyID(int applyID) {
    this.applyID = applyID;
  }

  public void setApplicant(String applicant) {
    this.applicant = applicant;
  }

  public void setReason(String reason) {
    this.reason = reason;
  }

  public void setApplyTime(String applyTime) {
    this.applyTime = applyTime;
  }

  public void setDayCount(int dayCount) {
    this.dayCount = dayCount;
  }

  public void setWfid(long wfid) {
    this.wfid = wfid;
  }

}

⌨️ 快捷键说明

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