From 3f1dc57d57ef0ceafcc59cd5ce34ff90cfe6d146 Mon Sep 17 00:00:00 2001
From: 1098226878 <1098226878@qq.com>
Date: 星期一, 13 九月 2021 17:06:16 +0800
Subject: [PATCH] 优化代码

---
 java110-db/src/main/resources/mapper/goods/ProductSpecDetailServiceDaoImplMapper.xml |  155 ++++++++++++++++++++++++++-------------------------
 1 files changed, 78 insertions(+), 77 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/goods/ProductSpecDetailServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/goods/ProductSpecDetailServiceDaoImplMapper.xml
old mode 100644
new mode 100755
index 22d3878..c91c241
--- a/java110-db/src/main/resources/mapper/goods/ProductSpecDetailServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/goods/ProductSpecDetailServiceDaoImplMapper.xml
@@ -5,102 +5,103 @@
 <mapper namespace="productSpecDetailServiceDaoImpl">
 
 
-
-
-
     <!-- 淇濆瓨浜у搧瑙勬牸鏄庣粏淇℃伅 add by wuxw 2018-07-03 -->
     <insert id="saveProductSpecDetailInfo" parameterType="Map">
         insert into product_spec_detail(
-spec_id,detail_name,detail_value,detail_id,store_id
-) values (
-#{specId},#{detailName},#{detailValue},#{detailId},#{storeId}
-)
+        spec_id,detail_name,detail_value,detail_id,store_id
+        ) values (
+        #{specId},#{detailName},#{detailValue},#{detailId},#{storeId}
+        )
     </insert>
-
 
 
     <!-- 鏌ヨ浜у搧瑙勬牸鏄庣粏淇℃伅 add by wuxw 2018-07-03 -->
     <select id="getProductSpecDetailInfo" parameterType="Map" resultType="Map">
-        select  t.spec_id,t.spec_id specId,t.detail_name,t.detail_name detailName,t.detail_value,t.detail_value detailValue,t.detail_id,t.detail_id detailId,t.status_cd,t.status_cd statusCd,t.store_id,t.store_id storeId 
-from product_spec_detail t 
-where 1 =1 
-<if test="specId !=null and specId != ''">
-   and t.spec_id= #{specId}
-</if> 
-<if test="detailName !=null and detailName != ''">
-   and t.detail_name= #{detailName}
-</if> 
-<if test="detailValue !=null and detailValue != ''">
-   and t.detail_value= #{detailValue}
-</if> 
-<if test="detailId !=null and detailId != ''">
-   and t.detail_id= #{detailId}
-</if> 
-<if test="statusCd !=null and statusCd != ''">
-   and t.status_cd= #{statusCd}
-</if> 
-<if test="storeId !=null and storeId != ''">
-   and t.store_id= #{storeId}
-</if> 
-order by t.create_time desc
-<if test="page != -1 and page != null ">
-   limit #{page}, #{row}
-</if> 
+        select t.spec_id,t.spec_id specId,t.detail_name,t.detail_name detailName,t.detail_value,t.detail_value
+        detailValue,t.detail_id,t.detail_id detailId,t.status_cd,t.status_cd statusCd,t.store_id,t.store_id storeId
+        from product_spec_detail t
+        where 1 =1
+        <if test="specId !=null and specId != ''">
+            and t.spec_id= #{specId}
+        </if>
+        <if test="specIds != null">
+            and t.spec_id in
+            <foreach collection="specIds" item="item" open="(" close=")" separator=",">
+                #{item}
+            </foreach>
+        </if>
+        <if test="detailName !=null and detailName != ''">
+            and t.detail_name= #{detailName}
+        </if>
+        <if test="detailValue !=null and detailValue != ''">
+            and t.detail_value= #{detailValue}
+        </if>
+        <if test="detailId !=null and detailId != ''">
+            and t.detail_id= #{detailId}
+        </if>
+        <if test="statusCd !=null and statusCd != ''">
+            and t.status_cd= #{statusCd}
+        </if>
+        <if test="storeId !=null and storeId != ''">
+            and t.store_id= #{storeId}
+        </if>
+        order by t.create_time desc
+        <if test="page != -1 and page != null ">
+            limit #{page}, #{row}
+        </if>
 
     </select>
 
 
-
-
     <!-- 淇敼浜у搧瑙勬牸鏄庣粏淇℃伅 add by wuxw 2018-07-03 -->
     <update id="updateProductSpecDetailInfo" parameterType="Map">
-        update  product_spec_detail t set t.status_cd = #{statusCd}
-<if test="newBId != null and newBId != ''">
-,t.b_id = #{newBId}
-</if> 
-<if test="specId !=null and specId != ''">
-, t.spec_id= #{specId}
-</if> 
-<if test="detailName !=null and detailName != ''">
-, t.detail_name= #{detailName}
-</if> 
-<if test="detailValue !=null and detailValue != ''">
-, t.detail_value= #{detailValue}
-</if> 
-<if test="storeId !=null and storeId != ''">
-, t.store_id= #{storeId}
-</if> 
- where 1=1 <if test="detailId !=null and detailId != ''">
-and t.detail_id= #{detailId}
-</if> 
+        update product_spec_detail t set t.status_cd = #{statusCd}
+        <if test="detailName !=null and detailName != ''">
+            , t.detail_name= #{detailName}
+        </if>
+        <if test="detailValue !=null and detailValue != ''">
+            , t.detail_value= #{detailValue}
+        </if>
+        where 1=1
+        <if test="detailId !=null and detailId != ''">
+            and t.detail_id= #{detailId}
+        </if>
+
+        <if test="specId !=null and specId != ''">
+            and t.spec_id= #{specId}
+        </if>
+
+        <if test="storeId !=null and storeId != ''">
+            and t.store_id= #{storeId}
+        </if>
 
     </update>
 
     <!-- 鏌ヨ浜у搧瑙勬牸鏄庣粏鏁伴噺 add by wuxw 2018-07-03 -->
-     <select id="queryProductSpecDetailsCount" parameterType="Map" resultType="Map">
-        select  count(1) count 
-from product_spec_detail t 
-where 1 =1 
-<if test="specId !=null and specId != ''">
-   and t.spec_id= #{specId}
-</if> 
-<if test="detailName !=null and detailName != ''">
-   and t.detail_name= #{detailName}
-</if> 
-<if test="detailValue !=null and detailValue != ''">
-   and t.detail_value= #{detailValue}
-</if> 
-<if test="detailId !=null and detailId != ''">
-   and t.detail_id= #{detailId}
-</if> 
-<if test="statusCd !=null and statusCd != ''">
-   and t.status_cd= #{statusCd}
-</if> 
-<if test="storeId !=null and storeId != ''">
-   and t.store_id= #{storeId}
-</if> 
+    <select id="queryProductSpecDetailsCount" parameterType="Map" resultType="Map">
+        select count(1) count
+        from product_spec_detail t
+        where 1 =1
+        <if test="specId !=null and specId != ''">
+            and t.spec_id= #{specId}
+        </if>
+        <if test="detailName !=null and detailName != ''">
+            and t.detail_name= #{detailName}
+        </if>
+        <if test="detailValue !=null and detailValue != ''">
+            and t.detail_value= #{detailValue}
+        </if>
+        <if test="detailId !=null and detailId != ''">
+            and t.detail_id= #{detailId}
+        </if>
+        <if test="statusCd !=null and statusCd != ''">
+            and t.status_cd= #{statusCd}
+        </if>
+        <if test="storeId !=null and storeId != ''">
+            and t.store_id= #{storeId}
+        </if>
 
 
-     </select>
+    </select>
 
 </mapper>

--
Gitblit v1.8.0