From 34981c30a78e8bbd7791131059a9210f9928b62c Mon Sep 17 00:00:00 2001
From: 刘光辉 <347230014@qq.com>
Date: 星期四, 17 九月 2026 09:24:09 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master' into master

---
 jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/enums/NodeStateEnum.java |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 48 insertions(+), 0 deletions(-)

diff --git a/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/enums/NodeStateEnum.java b/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/enums/NodeStateEnum.java
new file mode 100644
index 0000000..49a13aa
--- /dev/null
+++ b/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/enums/NodeStateEnum.java
@@ -0,0 +1,48 @@
+package jnpf.flowable.enums;
+
+import lombok.Getter;
+
+
+@Getter
+public enum NodeStateEnum {
+    /**
+     * 宸叉彁浜�
+     */
+    SUBMIT(1, "宸叉彁浜�"),
+    /**
+     * 宸查�氳繃
+     */
+    PASS(2, "宸查�氳繃"),
+    /**
+     * 宸叉嫆缁�
+     */
+    REJECT(3, "宸叉嫆缁�"),
+    /**
+     * 瀹℃壒涓�
+     */
+    APPROVAL(4, "瀹℃壒涓�"),
+    /**
+     * 宸查��鍥�
+     */
+    BACK(5, "宸查��鍥�"),
+    /**
+     * 宸叉挙鍥�
+     */
+    RECALL(6, "宸叉挙鍥�"),
+    /**
+     * 绛夊緟涓�
+     */
+    WAIT(7, "绛夊緟涓�"),
+    /**
+     * 寰呭姙鐞�
+     */
+    TRANSACT(8, "寰呭姙鐞�");
+
+    private final Integer code;
+    private final String message;
+
+    NodeStateEnum(Integer code, String message) {
+        this.code = code;
+        this.message = message;
+    }
+}

--
Gitblit v1.8.0