From 7d21be9c370e4ece9c07d040b3937adb17809e13 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 18 三月 2021 12:56:23 +0800
Subject: [PATCH] 加入 停车场属性

---
 java110-db/src/main/resources/mapper/community/RepairServiceDaoImplMapper.xml |   35 +++++++----------------------------
 1 files changed, 7 insertions(+), 28 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/community/RepairServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/community/RepairServiceDaoImplMapper.xml
index 551335bb..bd52724 100644
--- a/java110-db/src/main/resources/mapper/community/RepairServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/community/RepairServiceDaoImplMapper.xml
@@ -14,13 +14,13 @@
         )
     </insert>
 
-
     <!-- 鏌ヨ鎶ヤ慨淇℃伅淇℃伅锛圔usiness锛� add by wuxw 2018-07-03 -->
     <select id="getBusinessRepairInfo" parameterType="Map" resultType="Map">
         select t.operate,t.repair_name,t.repair_name repairName,t.appointment_time,t.appointment_time
         appointmentTime,t.repair_type,t.repair_type repairType,t.context,t.repair_id,t.repair_id
         repairId,t.tel,t.state,t.community_id,t.community_id communityId,t.b_id,t.b_id bId,
-        t.repair_obj_type,t.repair_obj_id,t.repair_obj_name,t.repair_obj_type repairObjType,t.repair_obj_id repairObjId,t.repair_obj_name repairObjName
+        t.repair_obj_type,t.repair_obj_id,t.repair_obj_name,t.repair_obj_type repairObjType,t.repair_obj_id
+        repairObjId,t.repair_obj_name repairObjName
         from business_repair_pool t
         where 1 =1
         <if test="operate !=null and operate != ''">
@@ -53,10 +53,7 @@
         <if test="bId !=null and bId != ''">
             and t.b_id= #{bId}
         </if>
-
-
     </select>
-
 
     <!-- 淇濆瓨鎶ヤ慨淇℃伅淇℃伅鑷� instance琛ㄤ腑 add by wuxw 2018-07-03 -->
     <insert id="saveRepairInfoInstance" parameterType="Map">
@@ -95,10 +92,7 @@
         <if test="bId !=null and bId != ''">
             and t.b_id= #{bId}
         </if>
-
-
     </insert>
-
 
     <!-- 鏌ヨ鎶ヤ慨淇℃伅淇℃伅 add by wuxw 2018-07-03 -->
     <select id="getRepairInfo" parameterType="Map" resultType="Map">
@@ -136,7 +130,7 @@
             and rs.return_visit_flag in ('001','002')
         </if>
         <if test="repairName !=null and repairName != ''">
-            and t.repair_name= #{repairName}
+            and t.repair_name like '%${repairName}%'
         </if>
         <if test="appointmentTime !=null ">
             and t.appointment_time= #{appointmentTime}
@@ -177,14 +171,11 @@
         <if test="repairObjId !=null and repairObjId != ''">
             and t.repair_obj_id= #{repairObjId}
         </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="updateRepairInfoInstance" parameterType="Map">
@@ -229,7 +220,6 @@
         <if test="bId !=null and bId != ''">
             and t.b_id= #{bId}
         </if>
-
     </update>
 
     <!-- 鏌ヨ鎶ヤ慨淇℃伅鏁伴噺 add by wuxw 2018-07-03 -->
@@ -250,7 +240,7 @@
             AND td.`status_cd` = rru.state
         </if>
         <if test="repairName !=null and repairName != ''">
-            and t.repair_name= #{repairName}
+            and t.repair_name like '%${repairName}%'
         </if>
         <if test="appointmentTime !=null ">
             and t.appointment_time= #{appointmentTime}
@@ -273,7 +263,6 @@
         <if test="state !=null and state != ''">
             and t.state= #{state}
         </if>
-
         <if test="statess !=null">
             and t.state in
             <foreach collection="statess" item="item" open="(" close=")" separator=",">
@@ -295,8 +284,6 @@
         <if test="repairObjId !=null and repairObjId != ''">
             and t.repair_obj_id= #{repairObjId}
         </if>
-
-
     </select>
 
     <!-- 鏌ヨ鎶ヤ慨淇℃伅淇℃伅 add by wuxw 2018-07-03 -->
@@ -308,7 +295,7 @@
         d.name stateName,
         rs.repair_type_name repairTypeName,rs.repair_way repairWay,
         t.repair_obj_type,t.repair_obj_id,t.repair_obj_name,t.repair_obj_type repairObjType,t.repair_obj_id repairObjId,t.repair_obj_name repairObjName,
-        sru.ru_id startRuId,ru.ru_id ruId
+        sru.ru_id startRuId,ru.ru_id ruId,ru.pre_ru_id preRuId
         from r_repair_pool t
         left join t_dict d on t.state = d.status_cd and d.table_name = 'r_repair_pool' and d.table_columns = 'state'
         left join r_repair_setting rs on rs.repair_type = t.repair_type and rs.status_cd = '0'
@@ -358,7 +345,6 @@
         <if test="page != -1 and page != null ">
             limit #{page}, #{row}
         </if>
-
     </select>
 
     <!-- 鏌ヨ鎶ヤ慨淇℃伅鏁伴噺 add by wuxw 2018-07-03 -->
@@ -408,11 +394,7 @@
         <if test="repairObjId !=null and repairObjId != ''">
             and t.repair_obj_id= #{repairObjId}
         </if>
-
-
     </select>
-
-
 
     <!-- 鏌ヨ鎶ヤ慨淇℃伅淇℃伅 add by wuxw 2018-07-03 -->
     <select id="getStaffFinishRepairInfo" parameterType="Map" resultType="Map">
@@ -422,7 +404,8 @@
         bId,
         d.name stateName,
         rs.repair_type_name repairTypeName,rs.repair_way repairWay,
-        t.repair_obj_type,t.repair_obj_id,t.repair_obj_name,t.repair_obj_type repairObjType,t.repair_obj_id repairObjId,t.repair_obj_name repairObjName
+        t.repair_obj_type,t.repair_obj_id,t.repair_obj_name,t.repair_obj_type repairObjType,t.repair_obj_id
+        repairObjId,t.repair_obj_name repairObjName
         from r_repair_pool t
         left join t_dict d on t.state = d.status_cd and d.table_name = 'r_repair_pool' and d.table_columns = 'state'
         left join r_repair_setting rs on rs.repair_type = t.repair_type and rs.status_cd = '0'
@@ -476,7 +459,6 @@
         <if test="page != -1 and page != null ">
             limit #{page}, #{row}
         </if>
-
     </select>
 
     <!-- 鏌ヨ鎶ヤ慨淇℃伅鏁伴噺 add by wuxw 2018-07-03 -->
@@ -533,8 +515,5 @@
             and t.repair_obj_id= #{repairObjId}
         </if>
         group by ru.staff_id
-
-
     </select>
-
 </mapper>

--
Gitblit v1.8.0