From 2dbc49184bd74845c8da694c20d6fd03d7ac87e0 Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期四, 21 九月 2023 16:16:21 +0800
Subject: [PATCH] 修改 9.21
---
standard-server/src/main/resources/mapper/TechnologyMapper.xml | 25 +++++++++++++++++++++++--
1 files changed, 23 insertions(+), 2 deletions(-)
diff --git a/standard-server/src/main/resources/mapper/TechnologyMapper.xml b/standard-server/src/main/resources/mapper/TechnologyMapper.xml
index bfdd39d..ae9d8b8 100644
--- a/standard-server/src/main/resources/mapper/TechnologyMapper.xml
+++ b/standard-server/src/main/resources/mapper/TechnologyMapper.xml
@@ -12,7 +12,7 @@
<!--鍙充晶鏁版嵁灞曠ず 宸ヨ壓璺嚎-->
<resultMap id="selectAllTecMap" type="map">
- <id property="name" column="father"/>
+ <id property="father" column="father"/>
<collection property="children" resultMap="selectAllTecMaps" javaType="List"/>
</resultMap>
<resultMap id="selectAllTecMaps" type="map">
@@ -32,7 +32,7 @@
and specifications_id = #{specificationsId}
and version = #{version}
<if test="message!=null and message!=''">
- and father like concat('%',#{message},'%')
+ and name like concat('%',#{message},'%')
</if>
</select>
@@ -42,6 +42,7 @@
from mom_ocean.technology
where state = 1
and specifications_id = #{specificationsId}
+ and version = #{version}
</select>
<!--鍙充笂瑙掓柊澧�-鎶�鏈寚鏍�-閫夋嫨宸ュ簭,宸ヨ壓-->
@@ -60,6 +61,26 @@
from mom_ocean.technology
where state = 1
and specifications_id = #{specificationsId}
+ and version = #{version}
+ </select>
+ <!--鏌ヨ璇ュ瀷鍙峰伐鑹轰笅鏈�鏂扮増鏈殑宸ヨ壓id-->
+ <select id="selTech" resultType="java.lang.Integer">
+ select id
+ from mom_ocean.technology
+ where state = 1
+ and father = #{techfather}
+ and name = #{techname}
+ and specifications_id = #{specificationId}
+ and version = #{version}
+ </select>
+
+ <!--鏌ヨ璇ュ瀷鍙蜂笅鐗堟湰涓嬬殑鎵�鏈夋暟鎹�-->
+ <select id="selAllByVerSpId" resultType="com.yuanchu.mom.pojo.Technology">
+ select *
+ from mom_ocean.technology
+ where state = 1
+ and specifications_id = #{spId}
+ and version = #{ver}
</select>
<!--鎵归噺鍒犻櫎-->
--
Gitblit v1.9.3