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-biz/src/main/java/jnpf/flowable/service/CirculateService.java |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 47 insertions(+), 0 deletions(-)

diff --git a/jnpf-flowable/jnpf-flowable-biz/src/main/java/jnpf/flowable/service/CirculateService.java b/jnpf-flowable/jnpf-flowable-biz/src/main/java/jnpf/flowable/service/CirculateService.java
new file mode 100644
index 0000000..5aa239f
--- /dev/null
+++ b/jnpf-flowable/jnpf-flowable-biz/src/main/java/jnpf/flowable/service/CirculateService.java
@@ -0,0 +1,47 @@
+package jnpf.flowable.service;
+
+import jnpf.base.service.SuperService;
+import jnpf.flowable.entity.CirculateEntity;
+import jnpf.flowable.model.operator.OperatorVo;
+import jnpf.flowable.model.task.TaskPagination;
+
+import java.util.List;
+
+/**
+ * @author 锛欽NPF寮�鍙戝钩鍙扮粍
+ * @version: V3.1.0
+ * @copyright 寮曡繄淇℃伅鎶�鏈湁闄愬叕鍙�
+ * @date 锛�2024/4/29 涓嬪崍5:14
+ */
+public interface CirculateService extends SuperService<CirculateEntity> {
+
+    /**
+     * 鍒楄〃
+     *
+     * @param taskId 浠诲姟涓婚敭
+     */
+    List<CirculateEntity> getList(String taskId);
+
+    /**
+     * 鍒楄〃
+     *
+     * @param taskId 浠诲姟涓婚敭
+     */
+    List<CirculateEntity> getList(String taskId, String nodeCode);
+
+
+    /**
+     * 鍒嗛〉鍒楄〃
+     *
+     * @param pagination 鍒嗛〉
+     */
+    List<OperatorVo> getList(TaskPagination pagination);
+
+    /**
+     * 璁板綍鍒楄〃
+     *
+     * @param taskId 浠诲姟涓婚敭
+     * @param nodeId 鑺傜偣id
+     */
+    List<CirculateEntity> getNodeList(String taskId, String nodeId);
+}

--
Gitblit v1.8.0