From 3a583be2297a3cc98edae23577ce985a332dfc36 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 18 三月 2021 13:25:03 +0800
Subject: [PATCH] 加入 停车场属性

---
 java110-db/src/main/resources/mapper/community/InspectionTaskServiceDaoImplMapper.xml |   22 ++++++++++++++++++++--
 1 files changed, 20 insertions(+), 2 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/community/InspectionTaskServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/community/InspectionTaskServiceDaoImplMapper.xml
index 6786d71..980af99 100644
--- a/java110-db/src/main/resources/mapper/community/InspectionTaskServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/community/InspectionTaskServiceDaoImplMapper.xml
@@ -141,6 +141,9 @@
         <if test="planInsTime !=null ">
             and t.plan_ins_time= #{planInsTime}
         </if>
+        <if test="todayPlanInsTime !=null ">
+            and t.plan_ins_time &gt; #{todayPlanInsTime}
+        </if>
         <if test="statusCd !=null and statusCd != ''">
             and t.status_cd= #{statusCd}
         </if>
@@ -170,6 +173,12 @@
         </if>
         <if test="state !=null and state != ''">
             and t.state= #{state}
+        </if>
+        <if test="states !=null ">
+            and t.state in
+            <foreach collection="states" item="item" open="(" close=")" separator=",">
+                #{item}
+            </foreach>
         </if>
         <if test="scopeTime !=null ">
             and t.create_time &lt; #{scopeTime}
@@ -278,6 +287,15 @@
         <if test="taskId !=null and taskId != ''">
             and t.task_id= #{taskId}
         </if>
+        <if test="state !=null and state != ''">
+            and t.state= #{state}
+        </if>
+        <if test="states !=null ">
+            and t.state in
+            <foreach collection="states" item="item" open="(" close=")" separator=",">
+                #{item}
+            </foreach>
+        </if>
 
 
     </select>
@@ -323,7 +341,7 @@
     <insert id="insertInspectionTask" parameterType="Map">
         insert into inspection_task(
         plan_user_id,plan_ins_time,sign_type,inspection_plan_id,plan_user_name,community_id,b_id,task_id,state,ip_staff_id
-        )
+        ) values
         <foreach collection="tasks" item="task" separator=",">
             (#{task.planUserId},#{task.planInsTime},#{task.signType},#{task.inspectionPlanId},#{task.planUserName},#{task.communityId},'-1',#{task.taskId},'20200405',#{task.ipStaffId})
         </foreach>
@@ -333,7 +351,7 @@
     <insert id="insertInspectionTaskDetail" parameterType="Map">
         insert into inspection_task_detail(
         task_detail_id,b_id,community_id,task_id,inspection_id,inspection_name,state
-        )
+        ) values
         <foreach collection="tasks" item="task" separator=",">
             (#{task.taskDetailId},'-1',#{task.communityId},#{task.taskId},#{task.inspectionId},#{task.inspectionName},'20200405')
         </foreach>

--
Gitblit v1.8.0