【功能评审】Bpm:跳过表达式

This commit is contained in:
YunaiV 2025-01-17 19:20:22 +08:00
parent 8f994af718
commit bcc535e034
2 changed files with 8 additions and 3 deletions

View File

@ -43,6 +43,13 @@ public class BpmnVariableConstants {
* @see ProcessInstance#getProcessVariables() * @see ProcessInstance#getProcessVariables()
*/ */
public static final String PROCESS_INSTANCE_VARIABLE_RETURN_FLAG = "RETURN_FLAG_%s"; public static final String PROCESS_INSTANCE_VARIABLE_RETURN_FLAG = "RETURN_FLAG_%s";
/**
* 流程实例的变量 - 是否跳过表达式
*
* @see ProcessInstance#getProcessVariables()
* @see <a href="https://blog.csdn.net/weixin_42065235/article/details/126039993">Flowable/Activiti之SkipExpression 完成自动审批</a>
*/
public static final String PROCESS_INSTANCE_SKIP_EXPRESSION_ENABLED = "_FLOWABLE_SKIP_EXPRESSION_ENABLED";
/** /**
* 任务的变量 - 状态 * 任务的变量 - 状态
@ -63,6 +70,4 @@ public class BpmnVariableConstants {
*/ */
public static final String TASK_SIGN_PIC_URL = "TASK_SIGN_PIC_URL"; public static final String TASK_SIGN_PIC_URL = "TASK_SIGN_PIC_URL";
public static final String PROCESS_INSTANCE_SKIP_EXPRESSION_ENABLED = "_FLOWABLE_SKIP_EXPRESSION_ENABLED";
} }