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/impl/CirculateServiceImpl.java |   41 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 41 insertions(+), 0 deletions(-)

diff --git a/jnpf-flowable/jnpf-flowable-biz/src/main/java/jnpf/flowable/service/impl/CirculateServiceImpl.java b/jnpf-flowable/jnpf-flowable-biz/src/main/java/jnpf/flowable/service/impl/CirculateServiceImpl.java
new file mode 100644
index 0000000..d00df89
--- /dev/null
+++ b/jnpf-flowable/jnpf-flowable-biz/src/main/java/jnpf/flowable/service/impl/CirculateServiceImpl.java
@@ -0,0 +1,41 @@
+package jnpf.flowable.service.impl;
+
+import jnpf.base.service.SuperServiceImpl;
+import jnpf.flowable.entity.CirculateEntity;
+import jnpf.flowable.mapper.CirculateMapper;
+import jnpf.flowable.model.operator.OperatorVo;
+import jnpf.flowable.model.task.TaskPagination;
+import jnpf.flowable.service.CirculateService;
+import org.springframework.stereotype.Service;
+
+import java.util.List;
+
+/**
+ * @author 锛欽NPF寮�鍙戝钩鍙扮粍
+ * @version: V3.1.0
+ * @copyright 寮曡繄淇℃伅鎶�鏈湁闄愬叕鍙�
+ * @date 锛�2024/4/29 涓嬪崍5:21
+ */
+@Service
+public class CirculateServiceImpl extends SuperServiceImpl<CirculateMapper, CirculateEntity> implements CirculateService {
+
+    @Override
+    public List<CirculateEntity> getList(String taskId) {
+        return this.baseMapper.getList(taskId);
+    }
+
+    @Override
+    public List<CirculateEntity> getList(String taskId, String nodeCode) {
+        return this.baseMapper.getList(taskId, nodeCode);
+    }
+
+    @Override
+    public List<OperatorVo> getList(TaskPagination pagination) {
+        return this.baseMapper.getList(pagination);
+    }
+
+    @Override
+    public List<CirculateEntity> getNodeList(String taskId, String nodeId) {
+        return this.baseMapper.getNodeList(taskId, nodeId);
+    }
+}

--
Gitblit v1.8.0