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

📄 wfactinstanceext.java

📁 公司自己开发的工作流引擎
💻 JAVA
字号:
package cn.com.iaspec.workflow.vo.db;
import java.io.*;
import java.util.*;

/**
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2006</p>
 *
 * <p>Company: iASPEC Technologies</p>
 *
 * @author xiesonglin
 * @version 1.5
 */
public class WfActInstanceExt
    implements Serializable{
  private long actInstanceId;
  private long actMaxTime;
  private long actWarningTime;
  private String actTimeUnitType;
  private Date actMaxTimeOut;
  private Date actWarningTimeOut;
  private boolean ifMaxTimeOut;
  private boolean ifWarningTimeOut;
  private long actPassTime;
  public WfActInstanceExt(){
  }

  public void setActInstanceId(long actInstanceId){
    this.actInstanceId=actInstanceId;
  }

  public void setActMaxTime(long actMaxTime){
    this.actMaxTime=actMaxTime;
  }

  public void setActWarningTime(long actWarningTime){
    this.actWarningTime=actWarningTime;
  }

  public void setActTimeUnitType(String actTimeUnitType){
    this.actTimeUnitType=actTimeUnitType;
  }

  public void setActMaxTimeOut(Date actMaxTimeOut){
    this.actMaxTimeOut=actMaxTimeOut;
  }

  public void setActWarningTimeOut(Date actWarningTimeOut){
    this.actWarningTimeOut=actWarningTimeOut;
  }

  public void setIfMaxTimeOut(boolean ifMaxTimeOut){
    this.ifMaxTimeOut=ifMaxTimeOut;
  }

  public void setIfWarningTimeOut(boolean ifWarningTimeOut){
    this.ifWarningTimeOut=ifWarningTimeOut;
  }

  public void setActPassTime(long actPassTime){
    this.actPassTime=actPassTime;
  }

  public long getActInstanceId(){
    return actInstanceId;
  }

  public long getActMaxTime(){
    return actMaxTime;
  }

  public long getActWarningTime(){
    return actWarningTime;
  }

  public String getActTimeUnitType(){
    return actTimeUnitType;
  }

  public Date getActMaxTimeOut(){
    return actMaxTimeOut;
  }

  public Date getActWarningTimeOut(){
    return actWarningTimeOut;
  }

  public boolean isIfMaxTimeOut(){
    return ifMaxTimeOut;
  }

  public boolean isIfWarningTimeOut(){
    return ifWarningTimeOut;
  }

  public long getActPassTime(){
    return actPassTime;
  }

}

⌨️ 快捷键说明

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