123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502 |
- <?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.fs.store.mapper.FsUserMapper">
- <resultMap type="FsUser" id="FsUserResult">
- <result property="userId" column="user_id" />
- <result property="username" column="username" />
- <result property="password" column="password" />
- <result property="realName" column="real_name" />
- <result property="birthday" column="birthday" />
- <result property="idCard" column="id_card" />
- <result property="remark" column="remark" />
- <result property="nickname" column="nickname" />
- <result property="avatar" column="avatar" />
- <result property="phone" column="phone" />
- <result property="createTime" column="create_time" />
- <result property="updateTime" column="update_time" />
- <result property="lastIp" column="last_ip" />
- <result property="nowMoney" column="now_money" />
- <result property="brokeragePrice" column="brokerage_price" />
- <result property="integral" column="integral" />
- <result property="signNum" column="sign_num" />
- <result property="status" column="status" />
- <result property="level" column="level" />
- <result property="spreadUserId" column="spread_user_id" />
- <result property="spreadTime" column="spread_time" />
- <result property="userType" column="user_type" />
- <result property="isPromoter" column="is_promoter" />
- <result property="payCount" column="pay_count" />
- <result property="spreadCount" column="spread_count" />
- <result property="addres" column="addres" />
- <result property="maOpenId" column="ma_open_id" />
- <result property="mpOpenId" column="mp_open_id" />
- <result property="unionId" column="union_id" />
- <result property="isDel" column="is_del" />
- <result property="isWeixinAuth" column="is_weixin_auth" />
- <result property="companyId" column="company_id" />
- <result property="companyUserId" column="company_user_id" />
- <result property="registerDate" column="register_date" />
- <result property="registerCode" column="register_code" />
- <result property="source" column="source" />
- <result property="userCode" column="user_code" />
- <result property="isShow" column="is_show" />
- </resultMap>
- <sql id="selectFsUserVo">
- select user_id,is_show, username, password, real_name, birthday, id_card, remark, nickname, avatar, phone, create_time, update_time, last_ip, now_money, brokerage_price, integral, sign_num, status, level, spread_user_id, spread_time, user_type, is_promoter, pay_count, spread_count, addres,ma_open_id,mp_open_id,union_id, is_del,is_weixin_auth,company_id,company_user_id,register_date,register_code,source,user_code from fs_user
- </sql>
- <select id="selectFsUserList" parameterType="FsUser" resultMap="FsUserResult">
- <include refid="selectFsUserVo"/>
- <where>
- <if test="username != null and username != ''"> and username like concat('%', #{username}, '%')</if>
- <if test="password != null and password != ''"> and password = #{password}</if>
- <if test="realName != null and realName != ''"> and real_name like concat('%', #{realName}, '%')</if>
- <if test="birthday != null "> and birthday = #{birthday}</if>
- <if test="idCard != null and idCard != ''"> and id_card = #{idCard}</if>
- <if test="remark != null and remark != ''"> and remark = #{remark}</if>
- <if test="nickname != null and nickname != ''"> and nickname like concat('%', #{nickname}, '%')</if>
- <if test="avatar != null and avatar != ''"> and avatar = #{avatar}</if>
- <if test="phone != null and phone != ''"> and phone = #{phone}</if>
- <if test="lastIp != null and lastIp != ''"> and last_ip = #{lastIp}</if>
- <if test="nowMoney != null "> and now_money = #{nowMoney}</if>
- <if test="brokeragePrice != null "> and brokerage_price = #{brokeragePrice}</if>
- <if test="integral != null "> and integral = #{integral}</if>
- <if test="signNum != null "> and sign_num = #{signNum}</if>
- <if test="status != null "> and status = #{status}</if>
- <if test="level != null "> and level = #{level}</if>
- <if test="spreadUserId != null "> and spread_user_id = #{spreadUserId}</if>
- <if test="spreadTime != null "> and spread_time = #{spreadTime}</if>
- <if test="userType != null and userType != ''"> and user_type = #{userType}</if>
- <if test="isPromoter != null "> and is_promoter = #{isPromoter}</if>
- <if test="payCount != null "> and pay_count = #{payCount}</if>
- <if test="spreadCount != null "> and spread_count = #{spreadCount}</if>
- <if test="addres != null and addres != ''"> and addres = #{addres}</if>
- <if test="isDel != null "> and is_del = #{isDel}</if>
- <if test="companyId != null "> and company_id = #{companyId}</if>
- <if test="companyUserId != null "> and company_user_id = #{companyUserId}</if>
- <if test="registerDate != null "> and DATE_FORMAT(register_date,'%Y-%m-%d') = DATE_FORMAT(#{registerDate},'%Y-%m-%d')</if>
- <if test="registerCode != null and registerCode != '' "> and register_code = #{registerCode}</if>
- <if test="source != null and source != '' "> and source = #{source}</if>
- <if test="isShow != null "> and is_show = #{isShow}</if>
- </where>
- order by user_id desc
- </select>
- <select id="selectFsUserById" parameterType="Long" resultMap="FsUserResult">
- <include refid="selectFsUserVo"/>
- where user_id = #{userId}
- </select>
- <select id="selectFsUserListLimit" resultType="com.fs.store.domain.FsUser">
- <include refid="selectFsUserVo"/>
- <where>
- <if test="password != null and password != ''"> and password = #{password}</if>
- <if test="realName != null and realName != ''"> and real_name like concat('%', #{realName}, '%')</if>
- <if test="birthday != null "> and birthday = #{birthday}</if>
- <if test="idCard != null and idCard != ''"> and id_card = #{idCard}</if>
- <if test="remark != null and remark != ''"> and remark = #{remark}</if>
- <if test="avatar != null and avatar != ''"> and avatar = #{avatar}</if>
- <if test="lastIp != null and lastIp != ''"> and last_ip = #{lastIp}</if>
- <if test="nowMoney != null "> and now_money = #{nowMoney}</if>
- <if test="brokeragePrice != null "> and brokerage_price = #{brokeragePrice}</if>
- <if test="integral != null "> and integral = #{integral}</if>
- <if test="signNum != null "> and sign_num = #{signNum}</if>
- <if test="status != null "> and status = #{status}</if>
- <if test="level != null "> and level = #{level}</if>
- <if test="spreadUserId != null "> and spread_user_id = #{spreadUserId}</if>
- <if test="spreadTime != null "> and spread_time = #{spreadTime}</if>
- <if test="userType != null and userType != ''"> and user_type = #{userType}</if>
- <if test="isPromoter != null "> and is_promoter = #{isPromoter}</if>
- <if test="payCount != null "> and pay_count = #{payCount}</if>
- <if test="spreadCount != null "> and spread_count = #{spreadCount}</if>
- <if test="addres != null and addres != ''"> and addres = #{addres}</if>
- <if test="isDel != null "> and is_del = #{isDel}</if>
- <if test="companyId != null "> and company_id = #{companyId}</if>
- <if test="companyUserId != null "> and company_user_id = #{companyUserId}</if>
- <if test="registerDate != null "> and DATE_FORMAT(register_date,'%Y-%m-%d') = DATE_FORMAT(#{registerDate},'%Y-%m-%d')</if>
- <if test="registerCode != null and registerCode != '' "> and register_code = #{registerCode}</if>
- <if test="source != null and source != '' "> and source = #{source}</if>
- <if test="isShow != null "> and is_show = #{isShow}</if>
- <if test="(username != null and username != '') or (nickname != null and nickname != '') or (phone != null and phone != '')">
- and (
- <if test="username != null and username != ''"> username like concat('%', #{username}, '%')</if>
- <if test="nickname != null and nickname != ''"> or nickname like concat('%', #{nickname}, '%')</if>
- <if test="phone != null and phone != ''"> or phone like concat('%',#{phone},'%')</if>
- )
- </if>
- </where>
- order by user_id desc
- limit 10
- </select>
- <insert id="insertFsUser" parameterType="FsUser" useGeneratedKeys="true" keyProperty="userId">
- insert into fs_user
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="username != null">username,</if>
- <if test="password != null">password,</if>
- <if test="realName != null">real_name,</if>
- <if test="birthday != null">birthday,</if>
- <if test="idCard != null">id_card,</if>
- <if test="remark != null">remark,</if>
- <if test="nickname != null">nickname,</if>
- <if test="avatar != null">avatar,</if>
- <if test="phone != null">phone,</if>
- <if test="createTime != null">create_time,</if>
- <if test="updateTime != null">update_time,</if>
- <if test="lastIp != null">last_ip,</if>
- <if test="nowMoney != null">now_money,</if>
- <if test="brokeragePrice != null">brokerage_price,</if>
- <if test="integral != null">integral,</if>
- <if test="signNum != null">sign_num,</if>
- <if test="status != null">status,</if>
- <if test="level != null">level,</if>
- <if test="spreadUserId != null">spread_user_id,</if>
- <if test="spreadTime != null">spread_time,</if>
- <if test="userType != null and userType != ''">user_type,</if>
- <if test="isPromoter != null">is_promoter,</if>
- <if test="payCount != null">pay_count,</if>
- <if test="spreadCount != null">spread_count,</if>
- <if test="addres != null and addres != ''">addres,</if>
- <if test="maOpenId != null">ma_open_id,</if>
- <if test="mpOpenId != null">mp_open_id,</if>
- <if test="unionId != null">union_id,</if>
- <if test="isDel != null">is_del,</if>
- <if test="isWeixinAuth != null">is_weixin_auth,</if>
- <if test="companyId != null">company_id,</if>
- <if test="companyUserId != null">company_user_id,</if>
- <if test="registerDate != null">register_date,</if>
- <if test="registerCode != null">register_code,</if>
- <if test="source != null">source,</if>
- <if test="userCode != null">user_code,</if>
- <if test="isShow != null">is_show,</if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="username != null">#{username},</if>
- <if test="password != null">#{password},</if>
- <if test="realName != null">#{realName},</if>
- <if test="birthday != null">#{birthday},</if>
- <if test="idCard != null">#{idCard},</if>
- <if test="remark != null">#{remark},</if>
- <if test="nickname != null">#{nickname},</if>
- <if test="avatar != null">#{avatar},</if>
- <if test="phone != null">#{phone},</if>
- <if test="createTime != null">#{createTime},</if>
- <if test="updateTime != null">#{updateTime},</if>
- <if test="lastIp != null">#{lastIp},</if>
- <if test="nowMoney != null">#{nowMoney},</if>
- <if test="brokeragePrice != null">#{brokeragePrice},</if>
- <if test="integral != null">#{integral},</if>
- <if test="signNum != null">#{signNum},</if>
- <if test="status != null">#{status},</if>
- <if test="level != null">#{level},</if>
- <if test="spreadUserId != null">#{spreadUserId},</if>
- <if test="spreadTime != null">#{spreadTime},</if>
- <if test="userType != null and userType != ''">#{userType},</if>
- <if test="isPromoter != null">#{isPromoter},</if>
- <if test="payCount != null">#{payCount},</if>
- <if test="spreadCount != null">#{spreadCount},</if>
- <if test="addres != null and addres != ''">#{addres},</if>
- <if test="maOpenId != null">#{maOpenId},</if>
- <if test="mpOpenId != null">#{mpOpenId},</if>
- <if test="unionId != null">#{unionId},</if>
- <if test="isDel != null">#{isDel},</if>
- <if test="isWeixinAuth != null">#{isWeixinAuth},</if>
- <if test="companyId != null">#{companyId},</if>
- <if test="companyUserId != null">#{companyUserId},</if>
- <if test="registerDate != null">#{registerDate},</if>
- <if test="registerCode != null">#{registerCode},</if>
- <if test="source != null">#{source},</if>
- <if test="userCode != null">#{userCode},</if>
- <if test="isShow != null">#{isShow},</if>
- </trim>
- </insert>
- <update id="updateFsUser" parameterType="FsUser">
- update fs_user
- <trim prefix="SET" suffixOverrides=",">
- <if test="username != null">username = #{username},</if>
- <if test="password != null">password = #{password},</if>
- <if test="realName != null">real_name = #{realName},</if>
- <if test="birthday != null">birthday = #{birthday},</if>
- <if test="idCard != null">id_card = #{idCard},</if>
- <if test="remark != null">remark = #{remark},</if>
- <if test="nickname != null">nickname = #{nickname},</if>
- <if test="avatar != null">avatar = #{avatar},</if>
- <if test="phone != null">phone = #{phone},</if>
- <if test="createTime != null">create_time = #{createTime},</if>
- <if test="updateTime != null">update_time = #{updateTime},</if>
- <if test="lastIp != null">last_ip = #{lastIp},</if>
- <if test="nowMoney != null">now_money = #{nowMoney},</if>
- <if test="brokeragePrice != null">brokerage_price = #{brokeragePrice},</if>
- <if test="integral != null">integral = #{integral},</if>
- <if test="signNum != null">sign_num = #{signNum},</if>
- <if test="status != null">status = #{status},</if>
- <if test="level != null">level = #{level},</if>
- <if test="spreadUserId != null">spread_user_id = #{spreadUserId},</if>
- <if test="spreadTime != null">spread_time = #{spreadTime},</if>
- <if test="userType != null and userType != ''">user_type = #{userType},</if>
- <if test="isPromoter != null">is_promoter = #{isPromoter},</if>
- <if test="payCount != null">pay_count = #{payCount},</if>
- <if test="spreadCount != null">spread_count = #{spreadCount},</if>
- <if test="addres != null and addres != ''">addres = #{addres},</if>
- <if test="maOpenId != null">ma_open_id = #{maOpenId},</if>
- <if test="mpOpenId != null">mp_open_id = #{mpOpenId},</if>
- <if test="unionId != null">union_id = #{unionId},</if>
- <if test="isDel != null">is_del = #{isDel},</if>
- <if test="isWeixinAuth != null">is_weixin_auth = #{isWeixinAuth},</if>
- <if test="companyId != null">company_id = #{companyId},</if>
- <if test="companyUserId != null">company_user_id = #{companyUserId},</if>
- <if test="registerDate != null">register_date = #{registerDate},</if>
- <if test="registerCode != null">register_code = #{registerCode},</if>
- <if test="source != null">source = #{source},</if>
- <if test="userCode != null">user_code = #{userCode},</if>
- <if test="isShow != null">is_show = #{isShow},</if>
- </trim>
- where user_id = #{userId}
- </update>
- <delete id="deleteFsUserById" parameterType="Long">
- delete from fs_user where user_id = #{userId}
- </delete>
- <delete id="deleteFsUserByIds" parameterType="String">
- delete from fs_user where user_id in
- <foreach item="userId" collection="array" open="(" separator="," close=")">
- #{userId}
- </foreach>
- </delete>
- <select id="selectFsUserPageList" resultType="FsUserPageListVO">
- SELECT
- fs_user.*,
- fs_user_course_count.id,
- fs_user_course_count.user_id,
- fs_user_course_count.watch_course_count,
- fs_user_course_count.miss_course_count,
- fs_user_course_count.miss_course_status,
- fs_user_course_count.course_id,
- fs_user_course_count.part_course_count,
- fs_user_course_count.last_watch_date,
- fs_user_course_count.STATUS AS courseCountStatus,
- fs_user_course_count.stop_watch_days,
- fs_user_course_count.create_time,
- fs_user_course_count.complete_watch_date,
- company_tag.tag,
- company_tag_user.tag_ids,
- company_user.nick_name as companyUserNickName
- FROM
- fs_user
- left join company_user on fs_user.company_user_id = company_user.user_id
- LEFT JOIN fs_user_course_count ON fs_user.user_id = fs_user_course_count.user_id
- LEFT JOIN company_tag_user ON fs_user.user_id = company_tag_user.user_id
- LEFT JOIN company_tag ON FIND_IN_SET(company_tag.tag_id, company_tag_user.tag_ids) > 0
- where company_user.parent_id = #{userId}
- <if test="companyUserId != null and companyUserId !='' ">
- and company_user.user_id = #{companyUserId}
- </if>
- <choose>
- <when test = "isBlack">
- AND fs_user.status = 0
- </when>
- <otherwise>
- AND fs_user.status = 1
- </otherwise>
- </choose>
- <if test="keyword != null and keyword !='' ">
- AND (fs_user.nickname LIKE concat('%',#{keyword},'%')
- or fs_user.phone LIKE concat('%',#{keyword},'%')
- )
- </if>
- <if test="registerStartTime != null and registerStartTime !='' ">
- AND fs_user.create_time >= #{registerStartTime}
- </if>
- <if test="registerEndTime != null and registerEndTime !='' ">
- AND fs_user.create_time <= #{registerEndTime}
- </if>
- <if test="tagIds != null and tagIds.length > 0">
- AND
- <foreach collection="tagIds" item="item" index="index" open="(" separator="or" close=")">
- company_tag_user.tag_ids LIKE concat('%"',#{item},'"%')
- </foreach>
- </if>
- <if test="tabValue != null and tabValue !='' ">
- <choose>
- <when test = "tabValue == 1">
- AND DAY(fs_user.create_time) = DAY(NOW())
- </when>
- <when test = "tabValue == 2">
- AND DAY(fs_user_course_count.complete_watch_date) = DAY(NOW())
- </when>
- <when test = "tabValue == 3">
- AND fs_user_course_count.status = 3
- </when>
- </choose>
- </if>
- <if test="watchCourseType != null and watchCourseType !='' ">
- <choose>
- <when test = "watchCourseType == 1">
- AND fs_user_course_count.status = 3
- </when>
- <when test = "watchCourseType == 2">
- AND fs_user_course_count.status = 1
- </when>
- <when test = "watchCourseType == 3">
- AND fs_user_course_count.status = 2
- </when>
- </choose>
- </if>
- <if test="missCourseStatus != null and missCourseStatus !='' ">
- <choose>
- <when test = "missCourseStatus == 1">
- AND fs_user_course_count.miss_course_status = 1
- </when>
- <when test = "missCourseStatus == 2">
- AND fs_user_course_count.miss_course_status = 2
- </when>
- </choose>
- </if>
- <if test="continueMissCourseSort != null and continueMissCourseSort !='' ">
- order by
- <choose>
- <when test = "continueMissCourseSort == 0">
- fs_user_course_count.miss_course_days desc
- </when>
- <when test = "continueMissCourseSort == 1">
- fs_user_course_count.miss_course_days asc
- </when>
- <when test = "continueMissCourseSort == 2">
- fs_user.create_time desc
- </when>
- <when test = "continueMissCourseSort == 3">
- fs_user.nickname asc
- </when>
- </choose>
- </if>
- </select>
- <select id="getUserNumber" resultType="UserListCountVO">
- SELECT
- fs_user.`status` as status,
- count( fs_user.user_id ) as num
- FROM
- fs_user
- LEFT JOIN company_user ON fs_user.company_user_id = company_user.user_id
- WHERE
- company_user.parent_id = #{userId}
- GROUP BY
- fs_user.`status`
- </select>
- <select id="getCountAnswer" resultType="UserDetailsVO">
- SELECT
- (
- SELECT
- ifnull(count( DISTINCT log_id ), 0) AS answerTime
- FROM
- fs_course_answer_logs
- LEFT JOIN fs_user ON fs_user.user_id = fs_course_answer_logs.user_id
- LEFT JOIN company_user ON company_user.user_id = fs_user.company_user_id
- WHERE
- company_user.parent_id = #{userId}
- <if test="dateTag != null and dateTag !='' ">
- <choose>
- <when test = "dateTag == '今天'">
- and to_days(fs_course_answer_logs.create_time) = to_days(now())
- </when>
- <when test = "dateTag == ' 昨天'">
- and to_days(now()) - to_days(fs_course_answer_logs.create_time) <= 1
- </when>
- <when test = "dateTag == '前天'">
- and to_days(now()) - to_days(fs_course_answer_logs.create_time) <= 2
- </when>
- <when test = "dateTag == '近七天'">
- and DATE_SUB(CURDATE(), INTERVAL 7 DAY) <= date(fs_course_answer_logs.create_time)
- </when>
- </choose>
- </if>
- GROUP BY
- fs_user.user_id
- HAVING
- fs_user.user_id = #{fsUserId}
- ) AS answerTime,
- (
- SELECT
- ifnull(count( DISTINCT log_id ), 0) AS answerRightTime
- FROM
- fs_course_answer_logs
- LEFT JOIN fs_user ON fs_user.user_id = fs_course_answer_logs.user_id
- LEFT JOIN company_user ON company_user.user_id = fs_user.company_user_id
- WHERE
- company_user.parent_id = #{userId}
- AND fs_course_answer_logs.is_right = 1
- <if test="dateTag != null and dateTag !='' ">
- <choose>
- <when test = "dateTag == '今天'">
- and to_days(fs_course_answer_logs.create_time) = to_days(now())
- </when>
- <when test = "dateTag == ' 昨天'">
- and to_days(now()) - to_days(fs_course_answer_logs.create_time) <= 1
- </when>
- <when test = "dateTag == '前天'">
- and to_days(now()) - to_days(fs_course_answer_logs.create_time) <= 2
- </when>
- <when test = "dateTag == '近七天'">
- and DATE_SUB(CURDATE(), INTERVAL 7 DAY) <= date(fs_course_answer_logs.create_time)
- </when>
- </choose>
- </if>
- GROUP BY
- fs_user.user_id
- HAVING
- fs_user.user_id = #{fsUserId}
- ) AS answerRightTime;
- </select>
- <select id="getCountRedPacket" resultType="com.fs.store.vo.h5.UserDetailsVO">
- SELECT
- ifnull( count( DISTINCT log_id ), 0 ) AS answerRedPacketTime,
- ifnull( sum( amount ), 0 ) AS answerRedPacketAmount,
- ifnull( complete_watch_count, 0 ) AS completeWatchCount ,
- ifnull( watch_times, 0 ) AS watchTimes,
- fs_user.user_id
- FROM
- fs_course_red_packet_log
- LEFT JOIN fs_user ON fs_user.user_id = fs_course_red_packet_log.user_id
- LEFT JOIN company_user ON company_user.user_id = fs_user.company_user_id
- LEFT JOIN fs_user_course_count ON fs_user_course_count.user_id = fs_user.user_id
- WHERE
- company_user.parent_id = #{userId}
- <if test="dateTag != null and dateTag !='' ">
- <choose>
- <when test = "dateTag == '今天'">
- and to_days(fs_course_red_packet_log.create_time) = to_days(now())
- </when>
- <when test = "dateTag == ' 昨天'">
- and to_days(now()) - to_days(fs_course_red_packet_log.create_time) <= 1
- </when>
- <when test = "dateTag == '前天'">
- and to_days(now()) - to_days(fs_course_red_packet_log.create_time) <= 2
- </when>
- <when test = "dateTag == '近七天'">
- and DATE_SUB(CURDATE(), INTERVAL 7 DAY) <= date(fs_course_red_packet_log.create_time)
- </when>
- </choose>
- </if>
- GROUP BY
- fs_user.user_id
- HAVING
- fs_user.user_id = #{fsUserId}
- </select>
- <update id="batchUpdateFsUserByIds" parameterType="Long">
- update fs_user
- set status = #{status} where user_id in
- <foreach item="id" collection="ids" open="(" separator="," close=")">
- #{id}
- </foreach>
- </update>
- </mapper>
|