| | |
| | | order by a.create_time desc |
| | | </select> |
| | | |
| | | <select id="selectVersionListInPage" resultType="cc.mrbird.febs.mall.vo.AdminVersionVo"> |
| | | select |
| | | a.* |
| | | from chat_version a |
| | | </select> |
| | | |
| | | <update id="updateIsRobotByGroupId"> |
| | | update chat_group |
| | | set |
| | |
| | | a.red_bag_cnt redBagCnt |
| | | from chat_group a |
| | | left join chat_user b on b.user_id = a.master |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <select id="getVersionInfoById" resultType="cc.mrbird.febs.mall.vo.AdminVersionVo"> |
| | | select |
| | | a.* |
| | | from chat_version a |
| | | where id = #{id} |
| | | </select> |
| | | |
| | |
| | | where user_id = #{userId} |
| | | </update> |
| | | |
| | | <update id="updateNicknameById"> |
| | | update chat_user |
| | | set |
| | | nick_name = #{nickName} |
| | | where user_id = #{userId} |
| | | </update> |
| | | |
| | | <select id="selectListByIsRobot" resultType="cc.mrbird.febs.mall.entity.ChatUser"> |
| | | select |
| | | a.* |
| | | from chat_user a |
| | | where is_robot = #{isRobot} |
| | | </select> |
| | | |
| | | <select id="selectTotalAmount" resultType="java.math.BigDecimal"> |
| | | select IFNULL(sum(IFNULL(total_amount,0)),0) |
| | | from chat_wallet |
| | | where type = 'USDT' |
| | | </select> |
| | | |
| | | <select id="selectTotalType" resultType="java.math.BigDecimal"> |
| | | select IFNULL(sum(IFNULL(amount,0)),0) |
| | | from chat_amount_flow |
| | | where type = #{type} |
| | | <if test='dateType == "D"'> |
| | | and date_format(create_time, '%Y-%m-%d') = date_format(#{date}, '%Y-%m-%d'); |
| | | </if> |
| | | <if test='dateType == "M"'> |
| | | and date_format(create_time, '%Y-%m') = date_format(#{date}, '%Y-%m'); |
| | | </if> |
| | | </select> |
| | | |
| | | <select id="selectUserList" resultType="cc.mrbird.febs.mall.entity.ChatUser"> |
| | | select |
| | | a.* |
| | | from chat_user a |
| | | where is_robot = #{isRobot} |
| | | <if test='dateType == "D"'> |
| | | and date_format(create_time, '%Y-%m-%d') = date_format(#{date}, '%Y-%m-%d'); |
| | | </if> |
| | | <if test='dateType == "M"'> |
| | | and date_format(create_time, '%Y-%m') = date_format(#{date}, '%Y-%m'); |
| | | </if> |
| | | </select> |
| | | |
| | | |
| | | </mapper> |