From 781c2e20a4bb844dae3f4eafbf5f0e494b942ea8 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 25 五月 2023 18:07:08 +0800
Subject: [PATCH] optimize

---
 java110-db/src/main/resources/mapper/report/ReportInfoAnswerServiceDaoImplMapper.xml |  175 +++++++++++++++++++++++++++++----------------------------
 1 files changed, 89 insertions(+), 86 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/report/ReportInfoAnswerServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/report/ReportInfoAnswerServiceDaoImplMapper.xml
index 25ccf3f..d0772a6 100644
--- a/java110-db/src/main/resources/mapper/report/ReportInfoAnswerServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/report/ReportInfoAnswerServiceDaoImplMapper.xml
@@ -5,111 +5,114 @@
 <mapper namespace="reportInfoAnswerServiceDaoImpl">
 
 
-
-
-
     <!-- 淇濆瓨鎵归噺鎿嶄綔鏃ュ織璇︽儏淇℃伅 add by wuxw 2018-07-03 -->
     <insert id="saveReportInfoAnswerInfo" parameterType="Map">
         insert into report_info_answer(
-person_name,user_an_id,person_id,community_id,setting_id
-) values (
-#{personName},#{userAnId},#{personId},#{communityId},#{settingId}
-)
+        person_name,user_an_id,person_id,community_id,setting_id,open_id,id_card,tel
+        ) values (
+        #{personName},#{userAnId},#{personId},#{communityId},#{settingId},#{openId},#{idCard},#{tel}
+        )
     </insert>
-
 
 
     <!-- 鏌ヨ鎵归噺鎿嶄綔鏃ュ織璇︽儏淇℃伅 add by wuxw 2018-07-03 -->
     <select id="getReportInfoAnswerInfo" parameterType="Map" resultType="Map">
-        select  t.person_name,t.person_name personName,t.create_time,t.create_time createTime,t.user_an_id,t.user_an_id userAnId,t.person_id,t.person_id personId,t.status_cd,t.status_cd statusCd,t.community_id,t.community_id communityId,t.setting_id,t.setting_id settingId 
-from report_info_answer t 
-where 1 =1 
-<if test="personName !=null and personName != ''">
-   and t.person_name= #{personName}
-</if> 
-<if test="createTime !=null and createTime != ''">
-   and t.create_time= #{createTime}
-</if> 
-<if test="userAnId !=null and userAnId != ''">
-   and t.user_an_id= #{userAnId}
-</if> 
-<if test="personId !=null and personId != ''">
-   and t.person_id= #{personId}
-</if> 
-<if test="statusCd !=null and statusCd != ''">
-   and t.status_cd= #{statusCd}
-</if> 
-<if test="communityId !=null and communityId != ''">
-   and t.community_id= #{communityId}
-</if> 
-<if test="settingId !=null and settingId != ''">
-   and t.setting_id= #{settingId}
-</if> 
-order by t.create_time desc
-<if test="page != -1 and page != null ">
-   limit #{page}, #{row}
-</if> 
+        select t.person_name,t.person_name personName,t.create_time,t.create_time createTime,t.user_an_id,t.user_an_id
+        userAnId,t.person_id,t.person_id personId,t.status_cd,t.status_cd statusCd,t.community_id,t.community_id
+        communityId,t.setting_id,t.setting_id settingId,t.id_card idCard,t.tel
+        from report_info_answer t
+        where 1 =1
+        <if test="personName !=null and personName != ''">
+            and t.person_name= #{personName}
+        </if>
+        <if test="createTime !=null and createTime != ''">
+            and t.create_time= #{createTime}
+        </if>
+        <if test="userAnId !=null and userAnId != ''">
+            and t.user_an_id= #{userAnId}
+        </if>
+        <if test="personId !=null and personId != ''">
+            and t.person_id= #{personId}
+        </if>
+        <if test="statusCd !=null and statusCd != ''">
+            and t.status_cd= #{statusCd}
+        </if>
+        <if test="communityId !=null and communityId != ''">
+            and t.community_id= #{communityId}
+        </if>
+        <if test="openId !=null and openId != ''">
+            and t.open_id= #{openId}
+        </if>
+        <if test="settingId !=null and settingId != ''">
+            and t.setting_id= #{settingId}
+        </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="updateReportInfoAnswerInfo" parameterType="Map">
-        update  report_info_answer t set t.status_cd = #{statusCd}
-<if test="newBId != null and newBId != ''">
-,t.b_id = #{newBId}
-</if> 
-<if test="personName !=null and personName != ''">
-, t.person_name= #{personName}
-</if> 
-<if test="createTime !=null and createTime != ''">
-, t.create_time= #{createTime}
-</if> 
-<if test="personId !=null and personId != ''">
-, t.person_id= #{personId}
-</if> 
-<if test="communityId !=null and communityId != ''">
-, t.community_id= #{communityId}
-</if> 
-<if test="settingId !=null and settingId != ''">
-, t.setting_id= #{settingId}
-</if> 
- where 1=1 <if test="userAnId !=null and userAnId != ''">
-and t.user_an_id= #{userAnId}
-</if> 
+        update report_info_answer t set t.status_cd = #{statusCd}
+        <if test="newBId != null and newBId != ''">
+            ,t.b_id = #{newBId}
+        </if>
+        <if test="personName !=null and personName != ''">
+            , t.person_name= #{personName}
+        </if>
+        <if test="createTime !=null and createTime != ''">
+            , t.create_time= #{createTime}
+        </if>
+        <if test="personId !=null and personId != ''">
+            , t.person_id= #{personId}
+        </if>
+        <if test="communityId !=null and communityId != ''">
+            , t.community_id= #{communityId}
+        </if>
+        <if test="settingId !=null and settingId != ''">
+            , t.setting_id= #{settingId}
+        </if>
+        where 1=1
+        <if test="userAnId !=null and userAnId != ''">
+            and t.user_an_id= #{userAnId}
+        </if>
 
     </update>
 
     <!-- 鏌ヨ鎵归噺鎿嶄綔鏃ュ織璇︽儏鏁伴噺 add by wuxw 2018-07-03 -->
-     <select id="queryReportInfoAnswersCount" parameterType="Map" resultType="Map">
-        select  count(1) count 
-from report_info_answer t 
-where 1 =1 
-<if test="personName !=null and personName != ''">
-   and t.person_name= #{personName}
-</if> 
-<if test="createTime !=null and createTime != ''">
-   and t.create_time= #{createTime}
-</if> 
-<if test="userAnId !=null and userAnId != ''">
-   and t.user_an_id= #{userAnId}
-</if> 
-<if test="personId !=null and personId != ''">
-   and t.person_id= #{personId}
-</if> 
-<if test="statusCd !=null and statusCd != ''">
-   and t.status_cd= #{statusCd}
-</if> 
-<if test="communityId !=null and communityId != ''">
-   and t.community_id= #{communityId}
-</if> 
-<if test="settingId !=null and settingId != ''">
-   and t.setting_id= #{settingId}
-</if> 
+    <select id="queryReportInfoAnswersCount" parameterType="Map" resultType="Map">
+        select count(1) count
+        from report_info_answer t
+        where 1 =1
+        <if test="personName !=null and personName != ''">
+            and t.person_name= #{personName}
+        </if>
+        <if test="createTime !=null and createTime != ''">
+            and t.create_time= #{createTime}
+        </if>
+        <if test="userAnId !=null and userAnId != ''">
+            and t.user_an_id= #{userAnId}
+        </if>
+        <if test="personId !=null and personId != ''">
+            and t.person_id= #{personId}
+        </if>
+        <if test="statusCd !=null and statusCd != ''">
+            and t.status_cd= #{statusCd}
+        </if>
+        <if test="communityId !=null and communityId != ''">
+            and t.community_id= #{communityId}
+        </if>
+        <if test="openId !=null and openId != ''">
+            and t.open_id= #{openId}
+        </if>
+        <if test="settingId !=null and settingId != ''">
+            and t.setting_id= #{settingId}
+        </if>
 
 
-     </select>
+    </select>
 
 </mapper>

--
Gitblit v1.8.0