From f7962d49cbbbb0261933cf6a66371bbb1aef40e2 Mon Sep 17 00:00:00 2001 From: xiarigang <272227118@qq.com> Date: Fri, 14 Mar 2025 13:53:27 +0800 Subject: [PATCH] =?UTF-8?q?[fix]=20=E6=81=A2=E5=A4=8D=E4=B9=8B=E5=89=8D?= =?UTF-8?q?=E7=9A=84=E5=AD=97=E6=AE=B5=EF=BC=9AxmlString=EF=BC=8C=E5=8F=91?= =?UTF-8?q?=E5=B8=831.6.7.2=E5=B0=8F=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../org/dromara/warm/flow/orm/entity/FlowDefinition.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/warm-flow-mybatis-flex-core/src/main/java/org/dromara/warm/flow/orm/entity/FlowDefinition.java b/warm-flow-mybatis-flex-core/src/main/java/org/dromara/warm/flow/orm/entity/FlowDefinition.java index 0515839..a91ba33 100644 --- a/warm-flow-mybatis-flex-core/src/main/java/org/dromara/warm/flow/orm/entity/FlowDefinition.java +++ b/warm-flow-mybatis-flex-core/src/main/java/org/dromara/warm/flow/orm/entity/FlowDefinition.java @@ -120,6 +120,13 @@ public class FlowDefinition implements Definition { */ private String ext; + /** + * 审批表单是否自定义(Y是 2否) + */ + @Deprecated + @Column(ignore = true) + private String xmlString; + @Column(ignore = true) private List nodeList = new ArrayList<>(); -- Gitee