From 44c1a5542cb3323b748389e9acc18e670f76e836 Mon Sep 17 00:00:00 2001
From: zhaowenxuan <chacca165@163.com>
Date: 星期四, 03 七月 2025 18:41:28 +0800
Subject: [PATCH] 2025-07-03

---
 ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/ApiJcycpdgjzMapper.java |   70 +++++++++++++++++++++++++++++++++++
 1 files changed, 70 insertions(+), 0 deletions(-)

diff --git a/ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/ApiJcycpdgjzMapper.java b/ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/ApiJcycpdgjzMapper.java
new file mode 100644
index 0000000..5961431
--- /dev/null
+++ b/ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/ApiJcycpdgjzMapper.java
@@ -0,0 +1,70 @@
+package com.ltkj.hosp.mapper;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.ltkj.hosp.domain.ApiJcycpdgjz;
+import org.apache.ibatis.annotations.Mapper;
+import org.apache.ibatis.annotations.Select;
+
+import java.util.List;
+
+/**
+ * ClassName: ApiJcycpdgjzMapper <br/>
+ * Description: <br/>
+ * date: 2025/7/3 15:05<br/>
+ *
+ * @author zjh<br />
+ */
+@Mapper
+public interface ApiJcycpdgjzMapper extends BaseMapper<ApiJcycpdgjz> {
+    /**
+     * 鏌ヨ鍏抽敭瀛�
+     *
+     * @param id 鍏抽敭瀛椾富閿�
+     * @return 鍏抽敭瀛�
+     */
+    public ApiJcycpdgjz selectApiJcycpdgjzById(Long id);
+
+    /**
+     * 鏌ヨ鍏抽敭瀛楀垪琛�
+     *
+     * @param apiJcycpdgjz 鍏抽敭瀛�
+     * @return 鍏抽敭瀛楅泦鍚�
+     */
+    public List<ApiJcycpdgjz> selectApiJcycpdgjzList(ApiJcycpdgjz apiJcycpdgjz);
+
+    /**
+     * 鏂板鍏抽敭瀛�
+     *
+     * @param apiJcycpdgjz 鍏抽敭瀛�
+     * @return 缁撴灉
+     */
+    public int insertApiJcycpdgjz(ApiJcycpdgjz apiJcycpdgjz);
+
+    /**
+     * 淇敼鍏抽敭瀛�
+     *
+     * @param apiJcycpdgjz 鍏抽敭瀛�
+     * @return 缁撴灉
+     */
+    public int updateApiJcycpdgjz(ApiJcycpdgjz apiJcycpdgjz);
+
+    /**
+     * 鍒犻櫎鍏抽敭瀛�
+     *
+     * @param id 鍏抽敭瀛椾富閿�
+     * @return 缁撴灉
+     */
+    public int deleteApiJcycpdgjzById(Long id);
+
+    /**
+     * 鎵归噺鍒犻櫎鍏抽敭瀛�
+     *
+     * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁涓婚敭闆嗗悎
+     * @return 缁撴灉
+     */
+    public int deleteApiJcycpdgjzByIds(Long[] ids);
+
+
+    @Select("select  a.gjz from  api_jcycpdgjz a where  a.deleted=0")
+    List<String> getGjzList();
+}

--
Gitblit v1.8.0