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-lims/jnpf-lims-biz/src/main/java/jnpf/limsService/support/LimsWendingxingXiaohuiFlowStatusResolver.java | 29 +++++++++++++++++++++++++++++
1 files changed, 29 insertions(+), 0 deletions(-)
diff --git a/jnpf-lims/jnpf-lims-biz/src/main/java/jnpf/limsService/support/LimsWendingxingXiaohuiFlowStatusResolver.java b/jnpf-lims/jnpf-lims-biz/src/main/java/jnpf/limsService/support/LimsWendingxingXiaohuiFlowStatusResolver.java
new file mode 100644
index 0000000..ed53d6a
--- /dev/null
+++ b/jnpf-lims/jnpf-lims-biz/src/main/java/jnpf/limsService/support/LimsWendingxingXiaohuiFlowStatusResolver.java
@@ -0,0 +1,29 @@
+package jnpf.limsService.support;
+
+/**
+ * 绋冲畾鎬ч攢姣佺敵璇风殑娴佺▼鐘舵�佽鍒欍��
+ */
+public final class LimsWendingxingXiaohuiFlowStatusResolver {
+
+ public static final String PROCESSING = "processing";
+ public static final String COMPLETED = "completed";
+
+ private LimsWendingxingXiaohuiFlowStatusResolver() {
+ }
+
+ public static boolean isTerminal(Integer flowState) {
+ if (flowState == null) {
+ return false;
+ }
+ switch (flowState) {
+ case 2:
+ case 3:
+ case 4:
+ case 7:
+ case 9:
+ return true;
+ default:
+ return false;
+ }
+ }
+}
--
Gitblit v1.8.0