feat: 添加查找用户的处理器,用于在bpmn中辅助查找用户

This commit is contained in:
kyle
2024-01-31 18:59:41 +08:00
parent e9a29e6dd4
commit b2370564a4
3 changed files with 93 additions and 7 deletions

View File

@ -0,0 +1,22 @@
package cn.iocoder.yudao.framework.flowable.core.enums;
/**
* 流程常量信息
*/
public interface ProcessConstants {
String BPMN_FILE_SUFFIX = ".bpmn";
/**
* nameapace
* bpmn中的命名空间
* 这个东西有可能导致无法切换工作流程的实现
*/
String NAMESPASE = "http://flowable.org/bpmn";
/**
* 自定义属性 dataType
*/
String PROCESS_CUSTOM_DATA_TYPE = "dataType";
}