WeUserMapper.xml 14.2 KB
Newer Older
1 2 3 4 5 6 7 8
<?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="com.linkwechat.wecom.mapper.WeUserMapper">
    
    <resultMap type="WeUser" id="WeUserResult">
        <result property="id"    column="id"    />
9 10
        <result property="avatarMediaid"    column="head_image_url"    />
        <result property="name"    column="user_name"    />
11 12 13 14 15 16
        <result property="alias"    column="alias"    />
        <result property="userId"    column="user_id"    />
        <result property="gender"    column="gender"    />
        <result property="mobile"    column="mobile"    />
        <result property="email"    column="email"    />
        <result property="wxAccount"    column="wx_account"    />
17
        <result property="department"    column="department"  typeHandler="com.linkwechat.framework.handler.StringArrayJoinTypeHandler" />
18
        <result property="position"    column="position"    />
19
        <result property="isLeaderInDept"    column="is_leader_in_dept"  typeHandler="com.linkwechat.framework.handler.StringArrayJoinTypeHandler"  />
20 21 22 23 24 25 26
        <result property="joinTime"    column="join_time"    />
        <result property="idCard"    column="id_card"    />
        <result property="qqAccount"    column="qq_account"    />
        <result property="telephone"    column="telephone"    />
        <result property="address"    column="address"    />
        <result property="birthday"    column="birthday"    />
        <result property="remark"    column="remark"    />
水库浪子 已提交
27
        <result property="isActivate" column="is_activate"/>
28 29 30
    </resultMap>

    <sql id="selectWeUserVo">
水库浪子 已提交
31
        select is_activate,head_image_url as avatarMediaid, user_name, alias, user_id, gender, mobile, email, wx_account, department, position, is_leader_in_dept, join_time, enable, id_card, qq_account, telephone, address, birthday, remark from we_user
32 33 34 35
    </sql>

    <select id="selectWeUserList" parameterType="WeUser" resultMap="WeUserResult">
        <include refid="selectWeUserVo"/>
水库浪子 已提交
36 37
        WHERE
            is_activate !=6
38 39
            <if test="avatarMediaid != null  and avatarMediaid != ''"> and head_image_url = #{avatarMediaid}</if>
            <if test="name != null  and name != ''"> and user_name like concat('%', #{name}, '%')</if>
40 41 42 43 44 45
            <if test="alias != null  and alias != ''"> and alias = #{alias}</if>
            <if test="userId != null  and userId != ''"> and user_id = #{userId}</if>
            <if test="gender != null "> and gender = #{gender}</if>
            <if test="mobile != null  and mobile != ''"> and mobile = #{mobile}</if>
            <if test="email != null  and email != ''"> and email = #{email}</if>
            <if test="wxAccount != null  and wxAccount != ''"> and wx_account = #{wxAccount}</if>
水库浪子 已提交
46
            <if test="department != null  and department.length > 0  "> and FIND_IN_SET(#{department},department)</if>
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
            <if test="position != null  and position != ''"> and position = #{position}</if>
            <if test="isLeaderInDept != null "> and is_leader_in_dept = #{isLeaderInDept}</if>
            <if test="joinTime != null "> and join_time = #{joinTime}</if>
            <if test="idCard != null  and idCard != ''"> and id_card = #{idCard}</if>
            <if test="qqAccount != null  and qqAccount != ''"> and qq_account = #{qqAccount}</if>
            <if test="telephone != null  and telephone != ''"> and telephone = #{telephone}</if>
            <if test="address != null  and address != ''"> and address = #{address}</if>
            <if test="birthday != null "> and birthday = #{birthday}</if>
    </select>
    
    <select id="selectWeUserById" parameterType="Long" resultMap="WeUserResult">
        <include refid="selectWeUserVo"/>
        where id = #{id}
    </select>
        
    <insert id="insertWeUser" parameterType="WeUser">
        insert into we_user
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="id != null">id,</if>
66 67
            <if test="avatarMediaid != null">head_image_url,</if>
            <if test="name != null">user_name,</if>
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
            <if test="alias != null">alias,</if>
            <if test="userId != null">user_id,</if>
            <if test="gender != null">gender,</if>
            <if test="mobile != null and mobile != ''">mobile,</if>
            <if test="email != null">email,</if>
            <if test="wxAccount != null">wx_account,</if>
            <if test="department != null">department,</if>
            <if test="position != null">position,</if>
            <if test="isLeaderInDept != null">is_leader_in_dept,</if>
            <if test="joinTime != null">join_time,</if>
            <if test="enable != null">enable,</if>
            <if test="idCard != null">id_card,</if>
            <if test="qqAccount != null">qq_account,</if>
            <if test="telephone != null">telephone,</if>
            <if test="address != null">address,</if>
            <if test="birthday != null">birthday,</if>
            <if test="remark != null">remark,</if>
            <if test="isActivate != null">is_activate,</if>
         </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="id != null">#{id},</if>
89 90
            <if test="avatarMediaid != null">#{avatarMediaid},</if>
            <if test="name != null">#{name},</if>
91 92 93 94 95 96
            <if test="alias != null">#{alias},</if>
            <if test="userId != null">#{userId},</if>
            <if test="gender != null">#{gender},</if>
            <if test="mobile != null and mobile != ''">#{mobile},</if>
            <if test="email != null">#{email},</if>
            <if test="wxAccount != null">#{wxAccount},</if>
97
            <if test="department != null" >#{department,jdbcType=OTHER,typeHandler=com.linkwechat.framework.handler.StringArrayJoinTypeHandler},</if>
98
            <if test="position != null">#{position},</if>
99
            <if test="isLeaderInDept != null">#{isLeaderInDept,jdbcType=OTHER,typeHandler=com.linkwechat.framework.handler.StringArrayJoinTypeHandler},</if>
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
            <if test="joinTime != null">#{joinTime},</if>
            <if test="enable != null">#{enable},</if>
            <if test="idCard != null">#{idCard},</if>
            <if test="qqAccount != null">#{qqAccount},</if>
            <if test="telephone != null">#{telephone},</if>
            <if test="address != null">#{address},</if>
            <if test="birthday != null">#{birthday},</if>
            <if test="remark != null">#{remark},</if>
            <if test="isActivate != null">#{isActivate},</if>
         </trim>
    </insert>

    <update id="updateWeUser" parameterType="WeUser">
        update we_user
        <trim prefix="SET" suffixOverrides=",">
115 116
            <if test="avatarMediaid != null">head_image_url = #{avatarMediaid},</if>
            <if test="name != null">user_name = #{name},</if>
117 118 119 120 121 122
            <if test="alias != null">alias = #{alias},</if>
            <if test="userId != null">user_id = #{userId},</if>
            <if test="gender != null">gender = #{gender},</if>
            <if test="mobile != null and mobile != ''">mobile = #{mobile},</if>
            <if test="email != null">email = #{email},</if>
            <if test="wxAccount != null">wx_account = #{wxAccount},</if>
H
HaoN 已提交
123
            <if test="department != null">department = #{department,jdbcType=OTHER,typeHandler=com.linkwechat.framework.handler.StringArrayJoinTypeHandler},</if>
124
            <if test="position != null">position = #{position},</if>
H
HaoN 已提交
125
            <if test="isLeaderInDept != null">is_leader_in_dept = #{isLeaderInDept,jdbcType=OTHER,typeHandler=com.linkwechat.framework.handler.StringArrayJoinTypeHandler},</if>
126 127 128 129 130 131 132 133 134 135 136 137 138 139
            <if test="joinTime != null">join_time = #{joinTime},</if>
            <if test="enable != null">enable = #{enable},</if>
            <if test="idCard != null">id_card = #{idCard},</if>
            <if test="qqAccount != null">qq_account = #{qqAccount},</if>
            <if test="telephone != null">telephone = #{telephone},</if>
            <if test="address != null">address = #{address},</if>
            <if test="birthday != null">birthday = #{birthday},</if>
            <if test="remark != null">remark = #{remark},</if>
            <if test="isActivate != null">is_activate = #{isActivate},</if>
        </trim>
        where id = #{id}
    </update>


140 141


水库浪子 已提交
142
    <select id="leaveNoAllocateUserList" parameterType="WeLeaveUserVo" resultType="com.linkwechat.wecom.domain.vo.WeLeaveUserVo">
1
13003003657 已提交
143
        SELECT
144
          *
1
13003003657 已提交
145
        FROM
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
        (
            SELECT
                wu.user_id,
                wu.user_name,
                wu.dimission_time,
                (SELECT GROUP_CONCAT(wd.`name`) FROM we_department wd WHERE wd.id=wu.department) as department,
                (SELECT COUNT(*) FROM we_flower_customer_rel wfcr WHERE wfcr.user_id=wu.user_id) as allocateCustomerNum,
                (SELECT COUNT(*) FROM we_group wg WHERE wg.`owner`=wu.user_id) as allocateGroupNum
            FROM
            we_user wu
             <where>
                <if test="userName != null and userName !=''">and wu.user_name=#{userName}</if>
                <if test="beginTime != null and beginTime !='' and endTime != null and endTime !=''">
                    DATE_FORMAT(wu.dimission_time,'%Y-%m-%d') BETWEEN #{beginTime} AND #{endTime}
                </if>
                <if test="isActivate != null ">and wu.is_activate = #{isActivate}</if>
                <if test="isAllocate != null ">and wu.is_allocate = #{isAllocate}</if>
             </where>
        )wuu WHERE allocateCustomerNum >0 and  allocateGroupNum>0
1
13003003657 已提交
165 166 167
    </select>


水库浪子 已提交
168 169 170 171
    <select id="leaveAllocateUserList" parameterType="WeLeaveUserVo" resultType="com.linkwechat.wecom.domain.vo.WeLeaveUserVo">
        SELECT
            wu.user_id,
            wu.user_name,
水库浪子 已提交
172
            wu.dimission_time,
水库浪子 已提交
173 174
            (SELECT GROUP_CONCAT(wd.`name`) FROM we_department wd WHERE wd.id=wu.department) as department,
            (SELECT COUNT(*) FROM we_allocate_customer wac WHERE wac.handover_userid=wu.user_id) as allocateCustomerNum,
水库浪子 已提交
175 176
            (SELECT COUNT(*) FROM we_allocate_group wag WHERE wag.old_owner=wu.user_id) as allocateGroupNum
        FROM we_user wu
水库浪子 已提交
177 178 179 180 181 182 183 184 185 186 187
        <where>
            <if test="userName != null and userName !=''">and wu.user_name=#{userName}</if>
            <if test="beginTime != null and beginTime !='' and endTime != null and endTime !=''">
                DATE_FORMAT(wu.dimission_time,'%Y-%m-%d') BETWEEN #{beginTime}  AND #{endTime}
            </if>
            <if test="isActivate != null ">and wu.is_activate = #{isActivate}</if>
            <if test="isAllocate != null ">and  wu.is_allocate = #{isAllocate}</if>
        </where>
    </select>


188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
    <delete id="deleteWeUser">
        delete from we_user
    </delete>


    <insert id="batchInsertWeUser" >
        insert into we_user (id, head_image_url, user_name, alias,
                             user_id, gender, mobile, email, wx_account,
                             department, position, is_leader_in_dept,
                             join_time, enable, id_card,
                             qq_account, telephone, address,
                             birthday, remark, is_activate)
        values
        <foreach collection="weUsers" item="weUser" index="index" separator=",">
            (   #{weUser.id},#{weUser.avatarMediaid},#{weUser.name},#{weUser.alias},
                #{weUser.userId},#{weUser.gender},#{weUser.mobile},#{weUser.email},#{weUser.wxAccount},
                #{weUser.department},#{weUser.position},#{weUser.isLeaderInDept},
                #{weUser.joinTime},#{weUser.enable},#{weUser.idCard},
                #{weUser.qqAccount},#{weUser.telephone},#{weUser.address},
                #{weUser.birthday},#{weUser.remark},#{weUser.isActivate}
            )
        </foreach>
        on duplicate key update head_image_url= values(head_image_url),
        id=values(id),
        user_name= values(user_name),alias= values(alias),
        mobile= values(mobile),email= values(email),
        wx_account= values(wx_account),department= values(department),
        position= values(position),is_leader_in_dept= values(is_leader_in_dept),
        join_time= values(join_time),enable= values(enable),
        id_card= values(id_card),qq_account= values(qq_account),
        telephone= values(telephone),address= values(address),
        birthday= values(birthday),remark= values(remark),
        is_activate= values(is_activate)
    </insert>



水库浪子 已提交
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
    <select id="getAllocateCustomers" parameterType="WeAllocateCustomersVo" resultType="com.linkwechat.wecom.domain.vo.WeAllocateCustomersVo">
         SELECT
            wc.`name` as customerName,
            wu.user_name as takeUserName,
            wac.allocate_time,
           (SELECT GROUP_CONCAT(wd.`name`) FROM we_department wd WHERE wd.id=wu.department) as department
        FROM
            we_allocate_customer wac
        LEFT JOIN we_customer wc ON wac.external_userid=wc.external_userid
        LEFT JOIN we_user wu ON wu.user_id=wac.takeover_userid
        <where>
            <if test="handoverUserId != null and handoverUserId !=''">and wac.handover_userid=#{handoverUserId}</if>
            <if test="beginTime != null and beginTime !='' and endTime != null and endTime !=''">
                DATE_FORMAT(wu.dimission_time,'%Y-%m-%d') BETWEEN #{beginTime}  AND #{endTime}
            </if>
        </where>
    </select>


    <select id="getAllocateGroups" parameterType="WeAllocateGroupsVo" resultType="com.linkwechat.wecom.domain.vo.WeAllocateGroupsVo">
         SELECT
               wu.user_name as newOwnerName,
               wg.chat_id,
               wg.group_name,
              (SELECT count(*) FROM we_group_member wgm WHERE wgm.chat_id=wg.chat_id) as memberNum,
              (SELECT GROUP_CONCAT(wd.`name`) FROM we_department wd WHERE wd.id=wu.department) as department,
               wag.allocate_time
        FROM
            we_allocate_group wag
        LEFT JOIN we_group wg ON wag.chat_id=wg.chat_id
        LEFT JOIN we_user wu ON wu.user_id=wag.new_owner
        <where>
            <if test="oldOwner != null and oldOwner !=''">and wag.old_owner=#{oldOwner}</if>
            <if test="beginTime != null and beginTime !='' and endTime != null and endTime !=''">
                DATE_FORMAT(wu.dimission_time,'%Y-%m-%d') BETWEEN #{beginTime}  AND #{endTime}
            </if>
        </where>

    </select>
水库浪子 已提交
264 265 266



267

1
13003003657 已提交
268 269 270



水库浪子 已提交
271 272 273 274 275 276 277







水库浪子 已提交
278 279


280
</mapper>