From 0892d843cd394f383ff50f480f7f22f2ec3829bc Mon Sep 17 00:00:00 2001
From: zhaowenxuan <chacca165@163.com>
Date: 星期五, 27 六月 2025 20:24:45 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 ltkj-hosp/src/main/resources/mapper/TjProjectMapper.xml |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/ltkj-hosp/src/main/resources/mapper/TjProjectMapper.xml b/ltkj-hosp/src/main/resources/mapper/TjProjectMapper.xml
index c16e5b3..50e8ee1 100644
--- a/ltkj-hosp/src/main/resources/mapper/TjProjectMapper.xml
+++ b/ltkj-hosp/src/main/resources/mapper/TjProjectMapper.xml
@@ -227,4 +227,18 @@
                 #{aaa,mode=IN,jdbcType=VARCHAR}
         )}
     </select>
+    <select id="getLisViewList" resultType="java.util.Map">
+        SELECT * FROM `v_examitem`
+    </select>
+
+    <select id="getOpenDxTjProjectList" parameterType="string" resultType="com.ltkj.hosp.domain.TjProject">
+        SELECT * FROM `tj_project`
+        <where>
+            pro_parent_id=0 and pro_status=0 and deleted=0
+            <if test="nr != null ">and (pro_name  like concat('%', #{nr}, '%')
+                 or pro_eng_name  like concat('%', #{nr}, '%'))</if>
+        </where>
+
+
+    </select>
 </mapper>

--
Gitblit v1.8.0