package org.springblade.mdm.flow.constants;
|
|
public class FlowConstant {
|
|
public static final String Y = "Y";
|
public static final String N = "N";
|
|
/**
|
* 试切流程KEY
|
*/
|
public static final String TRY_PROCESS_KEY = "dispatch";
|
|
/**
|
* 程序补充流程KEY
|
*/
|
public static final String APPEND_PROCESS_KEY = "program-append";
|
/**
|
* 固化流程KEY
|
*/
|
public static final String CURE_PROCESS_KEY = "program-cure";
|
/**
|
* 程序替换流程key
|
*/
|
public static final String REPLACE_PROCESS_KEY = "program-replace";
|
|
/**
|
* 程序解锁流程key
|
*/
|
public static final String UNLOCK_PROCESS_KEY = "program-unlock";
|
|
|
|
|
|
|
|
|
|
/**
|
* 固化程序,审批具体是否可用
|
*/
|
public static final String CURE_PROGRAM_USEABLE = "cureProgramUseable";
|
|
|
/**
|
* 流程中如果针对哪个节点发起流程,使用这个关键字在流程变量中存放nodeId
|
*/
|
public static final String NODE_ID = "nodeId";
|
|
/**
|
* 编程员姓名
|
*/
|
public static final String PROGRAMMER_NAME = "programmerName";
|
|
|
|
|
}
|