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/CommentService.java | 71 +++++++++++++++++++++++++++++++++++
1 files changed, 71 insertions(+), 0 deletions(-)
diff --git a/jnpf-flowable/jnpf-flowable-biz/src/main/java/jnpf/flowable/service/CommentService.java b/jnpf-flowable/jnpf-flowable-biz/src/main/java/jnpf/flowable/service/CommentService.java
new file mode 100644
index 0000000..e608748
--- /dev/null
+++ b/jnpf-flowable/jnpf-flowable-biz/src/main/java/jnpf/flowable/service/CommentService.java
@@ -0,0 +1,71 @@
+package jnpf.flowable.service;
+
+import jnpf.base.service.SuperService;
+import jnpf.exception.WorkFlowException;
+import jnpf.flowable.entity.CommentEntity;
+import jnpf.flowable.model.comment.CommentPagination;
+
+import java.util.List;
+
+/**
+ * @author 锛欽NPF寮�鍙戝钩鍙扮粍
+ * @version: V3.1.0
+ * @copyright 寮曡繄淇℃伅鎶�鏈湁闄愬叕鍙�
+ * @date 锛�2024/4/24 涓婂崍9:07
+ */
+public interface CommentService extends SuperService<CommentEntity> {
+
+ /**
+ * 鍒楄〃
+ *
+ * @param pagination 璇锋眰鍙傛暟
+ * @return
+ */
+ List<CommentEntity> getlist(CommentPagination pagination);
+
+ /**
+ * 鍒楄〃
+ *
+ * @return
+ */
+ List<CommentEntity> getlist();
+
+ /**
+ * 鍒楄〃
+ *
+ * @return
+ */
+ List<CommentEntity> getlist(List<String> idList);
+
+ /**
+ * 淇℃伅
+ *
+ * @param id 涓婚敭鍊�
+ * @return
+ */
+ CommentEntity getInfo(String id);
+
+ /**
+ * 鍒涘缓
+ *
+ * @param entity 瀹炰綋瀵硅薄
+ */
+ void create(CommentEntity entity) throws WorkFlowException;
+
+ /**
+ * 鏇存柊
+ *
+ * @param id 涓婚敭鍊�
+ * @param entity 瀹炰綋瀵硅薄
+ * @return
+ */
+ void update(String id, CommentEntity entity);
+
+ /**
+ * 鍒犻櫎
+ *
+ * @param entity 瀹炰綋瀵硅薄
+ * @return
+ */
+ void delete(CommentEntity entity, boolean delComment);
+}
--
Gitblit v1.8.0