123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167 |
- <?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"/>
- <result property="qwExtId" column="qw_ext_id" />
- <result property="isAddQw" column="is_add_qw" />
- </resultMap>
- <sql id="selectFsUserVo">
- select user_id,
- qw_ext_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,
- is_add_qw,
- 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>
- <select id="selectCusListPage" resultType="com.fs.store.domain.FsUser">
- select user.user_id,
- user.username,
- user.real_name,
- user.id_card,
- user.phone,
- user.addres,
- user.nickname,
- user.status,
- user.company_id,
- user.company_user_id,
- user.create_time
- from
- fs_user `user` join (
- select user_id from fs_user
- <where>
- <if test="companyId != null and companyId != ''">
- AND company_id = #{companyId}
- </if>
- <if test="companyUserId != null and companyUserId != ''">
- AND company_user_id = #{companyUserId}
- </if>
- <if test="phone != null and phone != ''">
- AND phone = #{phone}
- </if>
- </where>
- order by user_id desc
- limit ${(pageNum-1)*pageSize},${pageSize}
- ) t on t.user_id = `user`.user_id
- </select>
- <select id="selectCusListPageCount" resultType="java.lang.Long">
- SELECT COUNT(user_id)
- FROM fs_user
- <where>
- <if test="companyId != null and companyId != ''">
- AND company_id = #{companyId}
- </if>
- <if test="companyUserId != null and companyUserId != ''">
- AND company_user_id = #{companyUserId}
- </if>
- <if test="phone != null and phone != ''">
- AND phone = #{phone}
- </if>
- </where>
- </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>
- <if test="qwExtId != null">qw_ext_id,</if>
- <if test="isAddQw != null">is_add_qw,</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>
- <if test="qwExtId != null">#{qwExtId},</if>
- <if test="isAddQw != null">#{isAddQw},</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>
- <if test="qwExtId != null">qw_ext_id = #{qwExtId},</if>
- <if test="isAddQw != null">is_add_qw = #{isAddQw},</if>
- </trim>
- where user_id = #{userId}
- </update>
- <update id="transferCompanyUser">
- update fs_user
- set company_user_id=#{targetCompanyUserId}
- where
- user_id in
- <foreach collection="userIds" open="(" close=")" separator="," item="item">
- ${item}
- </foreach>
- </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.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.complete_watch_date,
- GROUP_CONCAT(DISTINCT company_tag.tag) AS tag,
- GROUP_CONCAT(DISTINCT company_tag.tag_id) AS tagIds,
- 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 1 = 1
- <if test="userId != null and userId !='' ">
- and (company_user.user_id = #{userId} OR company_user.parent_id = #{userId} )
- </if>
- <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="nickname != null and nickname !='' ">
- AND nickname LIKE concat('%"',#{nickname},'"%')
- </if>
- <if test="phone != null and phone !='' ">
- AND phone LIKE concat('%"',#{phone},'"%')
- </if>
- group by fs_user.user_id
- <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>
- <select id="getUserVipCountByCompanyUserId" resultType="java.util.Map">
- select
- count(if(date(u.create_time) = curdate(),u.user_id, null)) newVipCount,
- count(u.user_id) vipCount
- from fs_user u
- where u.company_user_id = #{companyUserId}
- </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>
- <select id="countUserSummary" resultType="FsUserSummaryCountVO">
- SELECT (SELECT count(fs_user.user_id)
- FROM fs_user
- LEFT JOIN company_user ON fs_user.company_user_id = company_user.user_id
- WHERE (
- company_user.user_id = #{userId}
- OR company_user.parent_id = #{userId}
- )) as userTotal,
- (SELECT count(fs_user.user_id)
- FROM fs_user
- LEFT JOIN company_user ON fs_user.company_user_id = company_user.user_id
- WHERE (company_user.user_id = #{userId} OR company_user.parent_id = #{userId})
- AND to_days(fs_user.create_time) = to_days(now())) as todayNewUser
- </select>
- <select id="countTag" resultType="FsUserSummaryCountTagVO">
- SELECT
- company_tag.tag AS tagName,
- count( fs_user.user_id ) AS userCount
- FROM
- company_tag_user
- LEFT JOIN fs_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
- LEFT JOIN company_user ON fs_user.company_user_id = company_user.user_id
- where (company_user.user_id = #{userId} or company_user.parent_id = #{userId} ) and company_tag.tag_id is not null
- GROUP BY
- company_tag.tag_id
- </select>
- <select id="countUserCourse" resultType="Map">
- SELECT
- (
- SELECT
- count(distinct fcc.user_id )
- FROM
- fs_user_course_count fcc
- LEFT JOIN fs_user ON fs_user.user_id = fcc.user_id
- LEFT JOIN company_user ON fs_user.company_user_id = company_user.user_id
- LEFT JOIN fs_user_course_video fcv ON fcv.course_id = fcc.course_id
- WHERE
- ( company_user.user_id = #{userId} OR company_user.parent_id = #{userId} )
- <if test="startTime != null and startTime !='' ">
- and fcc.create_time >= #{startTime}
- </if>
- <if test="endTime != null and endTime != ''">
- and fcc.create_time <= #{endTime}
- </if>
- <if test="courseId != null and courseId != ''">
- AND fcc.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND fcv.video_id = #{videoId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND fcv.video_id = #{videoId}
- </if>
- -- 单独通过销售id查询
- <if test="companyUserId != null and companyUserId != ''">
- AND company_user.user_id = #{companyUserId}
- </if>
- ) as courseWatchNum,
- (
- SELECT
- count(distinct fcc.user_id )
- FROM
- fs_user_course_count fcc
- LEFT JOIN fs_user ON fs_user.user_id = fcc.user_id
- LEFT JOIN company_user ON fs_user.company_user_id = company_user.user_id
- LEFT JOIN fs_user_course_video fcv ON fcv.course_id = fcc.course_id
- WHERE
- ( company_user.user_id = #{userId} OR company_user.parent_id = #{userId} )
- AND fcc.complete_watch_count > 0
- <if test="startTime != null and startTime !='' ">
- and fcc.create_time >= #{startTime}
- </if>
- <if test="endTime != null and endTime != ''">
- and fcc.create_time <= #{endTime}
- </if>
- <if test="courseId != null and courseId != ''">
- AND fcc.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND fcv.video_id = #{videoId}
- </if>
- -- 单独通过销售id查询
- <if test="companyUserId != null and companyUserId != ''">
- AND company_user.user_id = #{companyUserId}
- </if>
- ) as courseCompleteNum
- </select>
- <select id="countUserAnswer" resultType="Map">
- SELECT
- (
- SELECT
- count(distinct fs_user.user_id )
- 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.user_id = #{userId} OR company_user.parent_id = #{userId} )
- <if test="startTime != null and startTime !='' ">
- AND fs_course_answer_logs.create_time >= #{startTime}
- </if>
- <if test="endTime != null and endTime != ''">
- AND fs_course_answer_logs.create_time <= #{endTime}
- </if>
- <if test="courseId != null and courseId != ''">
- AND fs_course_answer_logs.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND fs_course_answer_logs.video_id = #{videoId}
- </if>
- -- 单独通过销售id查询
- <if test="companyUserId != null and companyUserId != ''">
- AND company_user.user_id = #{companyUserId}
- </if>
- ) AS answerNum,
- (
- SELECT
- count(distinct fs_user.user_id )
- 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.user_id = #{userId} OR company_user.parent_id = #{userId} )
- AND fs_course_answer_logs.is_right = 1
- <if test="startTime != null and startTime !='' ">
- AND fs_course_answer_logs.create_time >= #{startTime}
- </if>
- <if test="endTime != null and endTime != ''">
- AND fs_course_answer_logs.create_time <= #{endTime}
- </if>
- <if test="courseId != null and courseId != ''">
- AND fs_course_answer_logs.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND fs_course_answer_logs.video_id = #{videoId}
- </if>
- -- 单独通过销售id查询
- <if test="companyUserId != null and companyUserId != ''">
- AND company_user.user_id = #{companyUserId}
- </if>
- ) AS answerRightNum
- </select>
- <select id="countUserRedPacket" resultType="Map">
- SELECT
- (
- SELECT
- count( flog.log_id )
- FROM
- fs_course_red_packet_log flog
- LEFT JOIN fs_user ON fs_user.user_id = flog.user_id
- LEFT JOIN company_user ON company_user.user_id = fs_user.company_user_id
- WHERE
- ( company_user.user_id = #{userId} OR company_user.parent_id = #{userId} )
- <if test="startTime != null and startTime !='' ">
- AND flog.create_time >= #{startTime}
- </if>
- <if test="endTime != null and endTime != ''">
- AND flog.create_time <= #{endTime}
- </if>
- <if test="courseId != null and courseId != ''">
- AND flog.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND flog.video_id = #{videoId}
- </if>
- -- 单独通过销售id查询
- <if test="companyUserId != null and companyUserId != ''">
- AND company_user.user_id = #{companyUserId}
- </if>
- ) AS redPacketNum,
- (
- SELECT
- ifnull (sum( flog.amount ), 0)
- FROM
- fs_course_red_packet_log flog
- LEFT JOIN fs_user ON fs_user.user_id = flog.user_id
- LEFT JOIN company_user ON company_user.user_id = fs_user.company_user_id
- WHERE
- ( company_user.user_id = #{userId} OR company_user.parent_id = #{userId} )
- <if test="startTime != null and startTime !='' ">
- AND flog.create_time >= #{startTime}
- </if>
- <if test="endTime != null and endTime != ''">
- AND flog.create_time <= #{endTime}
- </if>
- <if test="courseId != null and courseId != ''">
- AND flog.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND flog.video_id = #{videoId}
- </if>
- -- 单独通过销售id查询
- <if test="companyUserId != null and companyUserId != ''">
- AND company_user.user_id = #{companyUserId}
- </if>
- ) AS redPacketAmount
- </select>
- <select id="countCourseDetails" resultType="Map">
- select (SELECT count(DISTINCT fc.course_id)
- FROM fs_user_course fc
- LEFT JOIN fs_user_course_count fcc ON fcc.course_id = fc.course_id
- LEFT JOIN fs_user ON fs_user.user_id = fcc.user_id
- WHERE fc.is_del = 0
- AND FIND_IN_SET(#{companyId}, fc.company_ids)
- <if test="courseId != null and courseId != ''">
- AND fc.course_id = #{courseId}
- </if>
- -- 单独通过销售id查询
- <if test="companyUserId != null and companyUserId != ''">
- AND fs_user.company_user_id = #{companyUserId}
- </if>
- ) as courseNum,
- (SELECT count(DISTINCT fcv.video_id)
- FROM fs_user_course_video fcv
- LEFT JOIN fs_user_course fc ON fc.course_id = fcv.course_id
- LEFT JOIN fs_user_course_count fcc ON fcc.course_id = fc.course_id
- LEFT JOIN fs_user ON fs_user.user_id = fcc.user_id
- WHERE fc.is_del = 0
- AND FIND_IN_SET(#{companyId}, fc.company_ids)
- <if test="courseId != null and courseId != ''">
- AND fcv.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND fcv.video_id = #{videoId}
- </if>
- -- 单独通过销售id查询
- <if test="companyUserId != null and companyUserId != ''">
- AND fs_user.company_user_id = #{companyUserId}
- </if>
- ) as videoNum,
- ( SELECT count(DISTINCT fs_user.user_id ) FROM fs_user_course_count fcc
- LEFT JOIN fs_user_course_video fcv ON fcv.course_id = fcc.course_id
- LEFT JOIN fs_user ON fs_user.user_id = fcc.user_id
- <if test="courseId != null and courseId != ''">
- AND fcc.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND fcv.video_id = #{videoId}
- </if>
- -- 单独通过销售id查询
- <if test="companyUserId != null and companyUserId != ''">
- AND fs_user.company_user_id = #{companyUserId}
- </if>
- ) as courseUserNum
- </select>
- <select id="countUserRankingByComplete" resultType="FsUserRankingVO">
- SELECT
- company_user.nick_name as userName,
- ifnull(
- ROUND((COUNT(DISTINCT CASE WHEN fcc.complete_watch_count > 0 THEN 1 END ) / count(1))*100,2),0
- ) as completeRate
- FROM
- fs_user_course_count fcc
- LEFT JOIN fs_user ON fs_user.user_id = fcc.user_id
- LEFT JOIN company_user ON fs_user.company_user_id = company_user.user_id
- LEFT JOIN fs_user_course_video fcv ON fcv.course_id = fcc.course_id
- WHERE
- ( company_user.user_id = #{userId} OR company_user.parent_id = #{userId} )
- <if test="startTime != null and startTime !='' ">
- AND fcc.create_time >= #{startTime}
- </if>
- <if test="endTime != null and endTime != ''">
- AND fcc.create_time <= #{endTime}
- </if>
- <if test="courseId != null and courseId != ''">
- AND fcc.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND fcv.video_id = #{videoId}
- </if>
- group by fcc.user_id
- <choose>
- <when test="order != null and order == 'asc'">
- order by completeRate asc
- </when>
- <when test="order != null and order == 'desc'">
- order by completeRate desc
- </when>
- <otherwise>
- order by completeRate desc
- </otherwise>
- </choose>
- limit 20
- </select>
- <select id="countUserRankingByRight" resultType="FsUserRankingVO">
- SELECT
- company_user.nick_name as userName,
- ifnull(ROUND(
- (COUNT(DISTINCT CASE WHEN fs_course_answer_logs.is_right = 1 THEN 1 END ) / count(1))
- *100,2),0
- ) as answerRightRate
- 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.user_id = #{userId} OR company_user.parent_id = #{userId} )
- <if test="startTime != null and startTime !='' ">
- AND fs_course_answer_logs.create_time >= #{startTime}
- </if>
- <if test="endTime != null and endTime != ''">
- AND fs_course_answer_logs.create_time <= #{endTime}
- </if>
- <if test="courseId != null and courseId != ''">
- AND fs_course_answer_logs.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND fs_course_answer_logs.video_id = #{videoId}
- </if>
- group by fs_user.user_id
- <choose>
- <when test="order != null and order == 'asc'">
- order by answerRightRate asc
- </when>
- <when test="order != null and order == 'desc'">
- order by answerRightRate desc
- </when>
- <otherwise>
- order by answerRightRate desc
- </otherwise>
- </choose>
- limit 20
- </select>
- <select id="countCourseRankingByComplete" resultType="FsCourseRankingVO">
- SELECT
- fcv.title AS videoName,
- ifnull(
- ROUND((
- COUNT( DISTINCT CASE WHEN fcc.complete_watch_count > 0 THEN 1 END ) / count(1))* 100,
- 2
- ),
- 0
- ) AS completeRate
- FROM
- fs_user_course_count fcc
- LEFT JOIN fs_user ON fs_user.user_id = fcc.user_id
- LEFT JOIN company_user ON fs_user.company_user_id = company_user.user_id
- LEFT JOIN fs_user_course_video fcv ON fcv.course_id = fcc.course_id
- WHERE
- ( company_user.user_id = #{userId} OR company_user.parent_id = #{userId} )
- <if test="startTime != null and startTime !='' ">
- AND fcc.create_time >= #{startTime}
- </if>
- <if test="endTime != null and endTime != ''">
- AND fcc.create_time <= #{endTime}
- </if>
- <if test="courseId != null and courseId != ''">
- AND fcc.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND fcv.video_id = #{videoId}
- </if>
- GROUP BY
- fcv.video_id
- <choose>
- <when test="order != null and order == 'asc'">
- ORDER BY completeRate asc
- </when>
- <when test="order != null and order == 'desc'">
- ORDER BY completeRate desc
- </when>
- <otherwise>
- ORDER BY completeRate desc
- </otherwise>
- </choose>
- LIMIT 20
- </select>
- <select id="countCourseRankingByRight" resultType="FsCourseRankingVO">
- SELECT
- fcv.title AS videoName,
- ifnull(
- ROUND(
- (
- COUNT( DISTINCT CASE WHEN fs_course_answer_logs.is_right = 1 THEN 1 END ) / count(1)) * 100,
- 2
- ),
- 0
- ) AS answerRightRate
- 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
- LEFT JOIN fs_user_course_video fcv ON fcv.video_id = fs_course_answer_logs.video_id
- WHERE
- ( company_user.user_id = #{userId} OR company_user.parent_id = #{userId} )
- <if test="startTime != null and startTime !='' ">
- AND fs_course_answer_logs.create_time >= #{startTime}
- </if>
- <if test="endTime != null and endTime != ''">
- AND fs_course_answer_logs.create_time <= #{endTime}
- </if>
- <if test="courseId != null and courseId != ''">
- AND fs_course_answer_logs.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND fs_course_answer_logs.video_id = #{videoId}
- </if>
- GROUP BY
- fs_course_answer_logs.video_id
- <choose>
- <when test="order != null and order == 'asc'">
- ORDER BY answerRightRate asc
- </when>
- <when test="order != null and order == 'desc'">
- ORDER BY answerRightRate desc
- </when>
- <otherwise>
- ORDER BY answerRightRate desc
- </otherwise>
- </choose>
- LIMIT 20
- </select>
- <!-- 查询某用户的课程视频,看课统计 -->
- <select id="courseAnalysisCourseCount" resultType="FsCourseAnalysisCountVO">
- SELECT
- count( DISTINCT fcc.user_id ) as courseWatchNum,
- COUNT( DISTINCT CASE WHEN fcc.complete_watch_count > 0 THEN fcc.user_id END ) as courseCompleteNum,
- ifnull(
- ROUND(
- (
- COUNT( DISTINCT CASE WHEN fcc.complete_watch_count > 0 THEN fcc.user_id END ) / count( DISTINCT fcc.user_id )) * 100,
- 2
- ),
- 0
- ) as completeRate,
- fcv.video_id
- FROM
- fs_user_course_count fcc
- LEFT JOIN fs_user ON fs_user.user_id = fcc.user_id
- LEFT JOIN company_user ON fs_user.company_user_id = company_user.user_id
- LEFT JOIN fs_user_course_video fcv ON fcv.course_id = fcc.course_id
- WHERE
- company_user.user_id = #{companyUserId}
- and fcv.is_del = 0
- <if test="courseId != null and courseId != ''">
- AND fcc.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND fcv.video_id = #{videoId}
- </if>
- GROUP BY
- fcv.video_id
- </select>
- <!-- 查询某用户的课程视频,红包统计 -->
- <select id="courseAnalysisRedPacketCount" resultType="FsCourseAnalysisCountVO">
- SELECT
- count( flog.log_id ) as redPacketNum,
- ifnull ( sum( flog.amount ), 0 ) as redPacketAmount,
- flog.video_id
- FROM
- fs_course_red_packet_log flog
- LEFT JOIN fs_user ON fs_user.user_id = flog.user_id
- LEFT JOIN company_user ON company_user.user_id = fs_user.company_user_id
- WHERE
- company_user.user_id = #{companyUserId}
- <if test="courseId != null and courseId != ''">
- AND flog.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND flog.video_id = #{videoId}
- </if>
- GROUP BY
- flog.video_id
- </select>
- <!-- 查询某用户的课程视频,答题统计 -->
- <select id="courseAnalysisAnswerCount" resultType="FsCourseAnalysisCountVO">
- SELECT
- count( DISTINCT fs_user.user_id ) as answerNum,
- COUNT( DISTINCT CASE WHEN fs_course_answer_logs.is_right = 1 THEN fs_user.user_id END ) as answerRightNum,
- ifnull(
- ROUND(
- (
- COUNT( DISTINCT CASE WHEN fs_course_answer_logs.is_right = 1 THEN fs_user.user_id END ) / count( DISTINCT fs_user.user_id )) * 100,
- 2
- ),
- 0
- ) as answerRightRate,
- fs_course_answer_logs.video_id
- 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.user_id = #{companyUserId}
- <if test="courseId != null and courseId != ''">
- AND fs_course_answer_logs.course_id = #{courseId}
- </if>
- <if test="videoId != null and videoId != ''">
- AND fs_course_answer_logs.video_id = #{videoId}
- </if>
- GROUP BY
- fs_course_answer_logs.video_id
- </select>
- <select id="companyUserCount" resultType="CompanyUserSummaryCountVO">
- SELECT
- (
- SELECT count( fs_user.user_id ) FROM fs_user LEFT JOIN company_user ON fs_user.company_user_id = company_user.user_id
- WHERE company_user.user_id = #{companyUserId}
- ) AS userTotal,
- (
- SELECT
- count( fs_user.user_id )
- FROM
- fs_user
- LEFT JOIN company_user ON fs_user.company_user_id = company_user.user_id
- WHERE
- company_user.user_id = #{companyUserId}
- AND to_days( fs_user.create_time ) = to_days(
- now())
- ) AS todayNewUser
- </select>
- <select id="newUserRedPacketCount" resultType="CompanyUserSummaryCountVO">
- SELECT
- count(flog.log_id) as userRedPacketNum,
- ifnull ( sum(case when to_days( fs_user.create_time ) = to_days(now()) THEN IFNULL(flog.amount,0) END), 0) as todayUserRedPacketAmount
- FROM
- fs_course_red_packet_log flog
- LEFT JOIN fs_user ON fs_user.user_id = flog.user_id
- WHERE
- fs_user.company_user_id = #{companyUserId}
- </select>
- </mapper>
|