ClueTaskMapper.xml 9.09 KB
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.fw.valhalla.dao.mapper.ClueTaskMapper">
    <select
            id="followList"
            resultType="cn.fw.valhalla.domain.dto.FollowPoolDTO"
            parameterType="cn.fw.valhalla.domain.query.FollowPoolQueryVO"
    >
        SELECT t1.id,
        if(t1.type=3 , t4.plate_no, t3.plate_no) plate_no,
        if(t1.type=3 , t4.frame_no, t3.frame_no) frame_no,
        if(t1.type=3 , t4.mobile, t5.mobile)     mobile,
        t3.cus_level                             cus_level,
        t2.expires                               loan_expires,
        t1.type                                  type,
        t1.follow_user                           user_id,
        t1.follow_user_name                      follow_user_name,
        t1.follow_shop                           shop_id,
        t1.finish_shop                           finish_shop,
        t1.finish_user_name                      finish_user_name,
        t1.create_time                           start_time,
        t3.buy_date                              buy_date,
        t3.insurance_expires                     insurance_expires,
        t3.arrival_time                          arrival_time,
        IFNULL(t1.times, 0)                      times,
        TIMESTAMPDIFF(HOUR, now(), t1.deadline)  remaining,
        t1.redistribution                        redistribution,
        t1.state                                 state,
        t1.close_time                            close_time,
        t1.reason                                initiative,
        t1.group_id                              group_id
        FROM clue_task t1
        left join follow_clue t6 on t1.clue_id=t6.id
        left join customer t3 on t6.vin = t3.frame_no and t6.group_id = t3.group_id and t3.yn=1
        left join customer_base_info t5 on t3.base_id = t5.id
        left join accident_pool t4 on t6.biz_id = t4.id
        left join customer_loan_info t2 on t6.vin = t2.frame_no and t6.group_id = t2.group_id
        <where>
                t1.group_id = #{condition.groupId}
            <if test="condition.userId !=null">
                and t1.follow_user = #{condition.userId}
            </if>
            <if test="condition.userName !=null and condition.userName != ''">
                and t1.follow_user_name like concat('%',#{condition.userName},'%')
            </if>
            <if test="condition.plateNo != null and condition.plateNo !='' ">
                and (t3.plate_no like concat('%', #{condition.plateNo}, '%') or t4.plate_no like concat('%', #{condition.plateNo}, '%'))
            </if>
            <if test="condition.frameNo != null and condition.frameNo !='' ">
                and t6.vin like concat('%', #{condition.frameNo}, '%')
            </if>
            <if test="condition.type !=null">
                and t1.type = #{condition.type}
            </if>

            <if test="condition.shopIds !=null">
                and  t1.follow_shop in
                <foreach collection="condition.shopIds" item="id" index="index" open="(" close=")" separator=",">
                    #{id}
                </foreach>
            </if>
            <if test="condition.state != null">
                and  t1.state in
                <foreach collection="condition.state" item="id" index="index" open="(" close=")" separator=",">
                    #{id}
                </foreach>
            </if>
            <if test="condition.loanCustomer !=null and condition.loanCustomer == 1">
                and t2.expires > now()
            </if>
            <if test="condition.loanCustomer !=null and condition.loanCustomer == 0">
                and (t2.expires is null or t2.expires &lt;= now())
            </if>
            <if test="condition.startTime1 !=null">
                and t1.create_time >= #{condition.startTime1}
            </if>
            <if test="condition.startTime2 !=null">
                and t1.create_time &lt;=  #{condition.startTime2}
            </if>
            <if test="condition.closeTime1 !=null">
                and t1.close_time >= #{condition.closeTime1}
            </if>
            <if test="condition.closeTime2 !=null">
                and t1.close_time &lt;= #{condition.closeTime2}
            </if>
            <if test="condition.redistribution !=null">
                and t1.redistribution = #{condition.redistribution}
            </if>
            <if test="condition.initiative !=null">
                and t1.reason = #{condition.initiative}
            </if>
            <if test="condition.ignoreChangeRole != null">
                and (t1.reason is null or t1.reason not in (4))
            </if>
        </where>
        <if test="condition.orderString != null and condition.orderString !='' ">
            ${condition.orderString}
        </if>
        limit #{startIndex},#{pageSize};
    </select>

    <select
            id="followListCount"
            resultType="java.lang.Long"
            parameterType="cn.fw.valhalla.domain.query.FollowPoolQueryVO"
    >
        SELECT count(t1.id)
        FROM clue_task t1
        left join follow_clue t6 on t1.clue_id=t6.id
        left join customer t3 on t6.vin = t3.frame_no and t6.group_id = t3.group_id and t3.yn=1
        left join customer_base_info t5 on t3.base_id = t5.id
        left join accident_pool t4 on t6.biz_id = t4.id
        left join customer_loan_info t2 on t6.vin = t2.frame_no and t6.group_id = t2.group_id
        <where>
                t1.group_id = #{condition.groupId}
            <if test="condition.userId !=null">
                and t1.follow_user = #{condition.userId}
            </if>
            <if test="condition.userName !=null and condition.userName != ''">
                and t1.follow_user_name like concat('%',#{condition.userName},'%')
            </if>
            <if test="condition.plateNo != null and condition.plateNo !='' ">
                and (t3.plate_no like concat('%', #{condition.plateNo}, '%') or t4.plate_no like concat('%', #{condition.plateNo}, '%'))
            </if>
            <if test="condition.frameNo != null and condition.frameNo !='' ">
                and t6.vin like concat('%', #{condition.frameNo}, '%')
            </if>
            <if test="condition.type !=null">
                and t1.type = #{condition.type}
            </if>

            <if test="condition.shopIds !=null">
                and  t1.follow_shop in
                <foreach collection="condition.shopIds" item="id" index="index" open="(" close=")" separator=",">
                    #{id}
                </foreach>
            </if>
            <if test="condition.state != null">
                and  t1.state in
                <foreach collection="condition.state" item="id" index="index" open="(" close=")" separator=",">
                    #{id}
                </foreach>
            </if>
            <if test="condition.loanCustomer !=null and condition.loanCustomer == 1">
                and t2.expires > now()
            </if>
            <if test="condition.loanCustomer !=null and condition.loanCustomer == 0">
                and t2.expires &lt;= now()
            </if>
            <if test="condition.startTime1 !=null">
                and t1.create_time >= #{condition.startTime1}
            </if>
            <if test="condition.startTime2 !=null">
                and t1.create_time &lt;=  #{condition.startTime2}
            </if>
            <if test="condition.closeTime1 !=null">
                and t1.close_time >= #{condition.closeTime1}
            </if>
            <if test="condition.closeTime2 !=null">
                and t1.close_time &lt;= #{condition.closeTime2}
            </if>
            <if test="condition.redistribution !=null">
                and t1.redistribution = #{condition.redistribution}
            </if>
            <if test="condition.initiative !=null">
                and t1.reason = #{condition.initiative}
            </if>
            <if test="condition.ignoreChangeRole != null">
                and (t1.reason is null or t1.reason not in (4))
            </if>
        </where>
    </select>



    <select
            id="queryBeCompleted"
            resultType="cn.fw.valhalla.domain.dto.ShouldBeCompletedDTO"
            parameterType="cn.fw.valhalla.domain.query.BeCompletedQuery"
    >
        SELECT
            t2.vin,
            t1.follow_user        user_id,
            t1.follow_user_name   user_name,
            t1.follow_shop        shop_id
        from clue_task t1
        inner join follow_clue t2 on t1.clue_id = t2.id
        <where>
            t1.redistribution = 0
            <if test="condition.type !=null">
                and t1.type = #{condition.type}
            </if>
            <if test="condition.shopId !=null">
                and t1.follow_shop = #{condition.shopId}
            </if>
            <if test="condition.userId !=null">
                and t1.follow_user = #{condition.userId}
            </if>
            and DATE(t1.close_time) BETWEEN DATE(from_unixtime(#{condition.startTime})) AND DATE(from_unixtime(#{condition.endTime}))
        </where>
    </select>
</mapper>