wfprocesscaseinfo.java

来自「公司自己开发的工作流引擎」· Java 代码 · 共 58 行

JAVA
58
字号
package cn.com.iaspec.workflow.vo.db;

import java.io.*;
import cn.com.iaspec.workflow.*;

/**
 *
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2005</p>
 * <p>Company: IASPEC Technologies</p>
 * @author xiesonglin
 * @version 1.0
 */
public class WfProcessCaseInfo
    implements Serializable{
  private String caseRegisterId;
  private long proInstId=WorkflowConstant.LONG_INIT_VALUE;
  private long ParentProInstId=WorkflowConstant.LONG_INIT_VALUE;
  private int flowType=WorkflowConstant.INT_INIT_VALUE;
  public int getFlowType(){
    return flowType;
  }

  public long getParentProInstId(){
    return ParentProInstId;
  }

  public long getProInstId(){
    return proInstId;
  }

  public void setCaseRegisterId(String caseRegisterId){
    this.caseRegisterId=caseRegisterId;
  }

  public void setFlowType(int flowType){
    this.flowType=flowType;
  }

  public void setParentProInstId(long ParentProInstId){
    this.ParentProInstId=ParentProInstId;
  }

  public void setProInstId(long proInstId){
    this.proInstId=proInstId;
  }

  public String getCaseRegisterId(){
    return caseRegisterId;
  }

  public WfProcessCaseInfo(){

  }

}

⌨️ 快捷键说明

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