java110
2021-03-18 3a583be2297a3cc98edae23577ce985a332dfc36
java110-db/src/main/resources/mapper/community/InspectionTaskServiceDaoImplMapper.xml
@@ -26,10 +26,10 @@
        <if test="planUserId !=null and planUserId != ''">
            and t.plan_user_id= #{planUserId}
        </if>
        <if test="actInsTime !=null and actInsTime != ''">
        <if test="actInsTime !=null ">
            and t.act_ins_time= #{actInsTime}
        </if>
        <if test="planInsTime !=null and planInsTime != ''">
        <if test="planInsTime !=null ">
            and t.plan_ins_time= #{planInsTime}
        </if>
        <if test="actUserName !=null and actUserName != ''">
@@ -76,10 +76,10 @@
        <if test="planUserId !=null and planUserId != ''">
            and t.plan_user_id= #{planUserId}
        </if>
        <if test="actInsTime !=null and actInsTime != ''">
        <if test="actInsTime !=null">
            and t.act_ins_time= #{actInsTime}
        </if>
        <if test="planInsTime !=null and planInsTime != ''">
        <if test="planInsTime !=null ">
            and t.plan_ins_time= #{planInsTime}
        </if>
        <if test="actUserName !=null and actUserName != ''">
@@ -135,11 +135,14 @@
        <if test="planUserId !=null and planUserId != ''">
            and t.plan_user_id= #{planUserId}
        </if>
        <if test="actInsTime !=null and actInsTime != ''">
        <if test="actInsTime !=null ">
            and t.act_ins_time= #{actInsTime}
        </if>
        <if test="planInsTime !=null and planInsTime != ''">
        <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}
@@ -171,6 +174,16 @@
        <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}
            and t.create_time &gt; #{createTime}
        </if>
        order by t.create_time desc
        <if test="page != -1 and page != null ">
            limit #{page}, #{row}
@@ -191,10 +204,10 @@
        <if test="state !=null and state != ''">
            , t.state= #{state}
        </if>
        <if test="actInsTime !=null and actInsTime != ''">
        <if test="actInsTime !=null ">
            , t.act_ins_time= #{actInsTime}
        </if>
        <if test="planInsTime !=null and planInsTime != ''">
        <if test="planInsTime !=null ">
            , t.plan_ins_time= #{planInsTime}
        </if>
        <if test="actUserName !=null and actUserName != ''">
@@ -241,10 +254,10 @@
        <if test="planUserId !=null and planUserId != ''">
            and t.plan_user_id= #{planUserId}
        </if>
        <if test="actInsTime !=null and actInsTime != ''">
        <if test="actInsTime !=null ">
            and t.act_ins_time= #{actInsTime}
        </if>
        <if test="planInsTime !=null and planInsTime != ''">
        <if test="planInsTime !=null ">
            and t.plan_ins_time= #{planInsTime}
        </if>
        <if test="statusCd !=null and statusCd != ''">
@@ -273,6 +286,15 @@
        </if>
        <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>
@@ -318,10 +340,10 @@
    <!-- 保存活动信息 add by wuxw 2018-07-03 -->
    <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
        )
        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.planUserId},#{task.planInsTime},#{task.signType},#{task.inspectionPlanId},#{task.planUserName},#{task.communityId},'-1',#{task.taskId},'20200405',#{task.ipStaffId})
        </foreach>
    </insert>
@@ -329,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>