All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.schoolwow.workflow.domain.instance.WorkFlowInstanceStatus Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package cn.schoolwow.workflow.domain.instance;

/**工作流实例状态*/
public enum WorkFlowInstanceStatus {
    /**进行中*/
    Running(0),
    /**已完成*/
    Finished(1),
    /**已撤回*/
    Revoke(2),
    /**已拒绝*/
    Reject(3);

    public int status;

    WorkFlowInstanceStatus(int status) {
        this.status = status;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy