FollowTaskMapper.xml 8.02 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.FollowTaskMapper">
    <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,
        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.reception_user_name                  reception_user_name,
        t1.reception_shop_name                  reception_shop_name,
        t1.create_time                          start_time,
        t3.buy_date                             buy_date,
        t3.insurance_expires                    insurance_expires,
        t3.arrival_time                         arrival_time,
        t1.times                                times,
        t1.feedback                             feedback,
        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 follow_task t1
        left join customer t3 on t1.customer_id = t3.id
        left join accident_pool t4 on t1.customer_id = t4.id
        left join customer_loan_info t2 on t3.frame_no = t2.frame_no and t3.group_id = t2.group_id
        <where>
            <if test="condition.groupId !=null">
                and t1.group_id = #{condition.groupId}
            </if>
            <if test="condition.userId !=null">
                and t1.follow_user = #{condition.userId}
            </if>
            <if test="condition.userName !=null and condition.userName != ''">
                and t1.follow_user 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 t3.frame_no like concat('%', #{condition.frameNo}, '%')
            </if>
            <if test="condition.type !=null">
                and t1.type = #{condition.type}
            </if>
            <if test="condition.feedback">
                and FIND_IN_SET(#{condition.feedback}, t1.feedback)
            </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>
        </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 follow_task t1
        left join customer t3 on t1.customer_id = t3.id
        left join accident_pool t4 on t1.customer_id = t4.id
        left join customer_loan_info t2 on t3.frame_no = t2.frame_no and t3.group_id = t2.group_id
        <where>
            <if test="condition.groupId !=null">
                and t1.group_id = #{condition.groupId}
            </if>
            <if test="condition.userId !=null">
                and t1.follow_user = #{condition.userId}
            </if>
            <if test="condition.userName !=null and condition.userName != ''">
                and t1.follow_user 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 t3.frame_no like concat('%', #{condition.frameNo}, '%')
            </if>
            <if test="condition.type !=null">
                and t1.type = #{condition.type}
            </if>
            <if test="condition.feedback">
                and FIND_IN_SET(#{condition.feedback}, t1.feedback)
            </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>
        </where>
    </select>
</mapper>