feat(REQ-4418) - 测试服务端与客户端枚举不一致的问题

This commit is contained in:
wangli 2025-08-29 16:34:09 +08:00
parent fd51fe6dc0
commit d939b1ecd4

View File

@ -45,6 +45,9 @@ public enum BpmnFlowNodeType {
return type;
}
public static BpmnFlowNodeType getByType(String type) {
return fromValue(type);
}
public static BpmnFlowNodeType valueOfType(String type) {
return fromValue(type);