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/service/TableExampleService.java |   90 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 90 insertions(+), 0 deletions(-)

diff --git a/jnpf-lims/jnpf-lims-biz/src/main/java/jnpf/service/TableExampleService.java b/jnpf-lims/jnpf-lims-biz/src/main/java/jnpf/service/TableExampleService.java
new file mode 100644
index 0000000..c51b414
--- /dev/null
+++ b/jnpf-lims/jnpf-lims-biz/src/main/java/jnpf/service/TableExampleService.java
@@ -0,0 +1,90 @@
+package jnpf.service;
+
+import jnpf.base.service.SuperService;
+import jnpf.entity.TableExampleEntity;
+import jnpf.model.tableexample.PaginationTableExample;
+
+import java.util.List;
+
+/**
+ * 琛ㄦ牸绀轰緥鏁版嵁
+ *
+ * @author JNPF寮�鍙戝钩鍙扮粍
+ * @version V3.1.0
+ * @copyright 寮曡繄淇℃伅鎶�鏈湁闄愬叕鍙革紙https://www.jnpfsoft.com锛�
+ * @date 2019骞�9鏈�26鏃� 涓婂崍9:18
+ */
+public interface TableExampleService extends SuperService<TableExampleEntity> {
+
+    /**
+     * 鍒楄〃
+     *
+     * @return
+     */
+    List<TableExampleEntity> getList();
+
+    /**
+     * 鍒楄〃(甯﹀叧閿瓧)
+     *
+     * @param keyword   鍏抽敭瀛�
+     * @return
+     */
+    List<TableExampleEntity> getList(String keyword);
+
+    /**
+     * 鍒楄〃
+     *
+     * @param typeId 绫诲埆涓婚敭
+     * @param paginationTableExample
+     * @return
+     */
+    List<TableExampleEntity> getList(String typeId, PaginationTableExample paginationTableExample);
+
+    /**
+     * 鍒楄〃
+     *
+     * @param paginationTableExample
+     * @return
+     */
+    List<TableExampleEntity> getList(PaginationTableExample paginationTableExample);
+
+    /**
+     * 淇℃伅
+     *
+     * @param id 涓婚敭鍊�
+     * @return
+     */
+    TableExampleEntity getInfo(String id);
+
+    /**
+     * 鍒犻櫎
+     *
+     * @param entity 瀹炰綋瀵硅薄
+     */
+    void delete(TableExampleEntity entity);
+
+    /**
+     * 鍒涘缓
+     *
+     * @param entity 瀹炰綋瀵硅薄
+     * @return
+     */
+    void create(TableExampleEntity entity);
+
+    /**
+     * 鏇存柊
+     *
+     * @param id     涓婚敭鍊�
+     * @param entity 瀹炰綋瀵硅薄
+     * @return
+     */
+    boolean update(String id, TableExampleEntity entity);
+
+    /**
+     * 琛岀紪杈�
+     *
+     * @param entity 瀹炰綋瀵硅薄
+     * @return
+     */
+    boolean rowEditing(TableExampleEntity entity);
+}

--
Gitblit v1.8.0