This commit is contained in:
dute7liang
2023-12-31 16:09:56 +08:00
parent d1a59f2d4a
commit 0c1fc3cada
230 changed files with 662 additions and 580 deletions

View File

@@ -0,0 +1,55 @@
<?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.ruoyi.cai.mapper.AccountMapper">
<resultMap type="com.ruoyi.cai.domain.Account" id="CaiAccountResult">
<result property="id" column="id"/>
<result property="userId" column="user_id"/>
<result property="coin" column="coin"/>
<result property="incomeCoin" column="income_coin"/>
<result property="totalBuyMoney" column="total_buy_money"/>
<result property="totalBuyCoin" column="total_buy_coin"/>
<result property="status" column="status"/>
<result property="createTime" column="create_time"/>
</resultMap>
<update id="incsCoin">
update cai_account
set coin = coin + #{coin}
where user_id = #{userId}
</update>
<update id="decrCoin">
update cai_account
set coin = coin - #{coin}
where user_id = #{userId} and (coin - #{coin}) > 0
</update>
<update id="decrIncomeCoin">
update cai_account
set income_coin = income_coin - #{incomeCoin}
where user_id = #{userId} and (income_coin - #{incomeCoin}) > 0
</update>
<update id="incsIncomeCoin">
update cai_account
set income_coin = income_coin + #{incomeCoin}
where user_id = #{userId}
</update>
<select id="pageAdmin" resultType="com.ruoyi.cai.dto.admin.vo.AccountAdminVo">
select t1.*,t2.usercode,t2.nickname,t2.mobile,t2.avatar,t2.gender,t2.is_anchor,t2.age
from cai_account t1
left join cai_user t2 on t1.user_id = t2.id
<where>
<if test="bo.mobile != null and bo.mobile != ''">
and t2.mobile = #{bo.mobile}
</if>
<if test="bo.usercode != null and bo.usercode != ''">
and t2.usercode = #{bo.usercode}
</if>
</where>
order by t2.create_time desc
</select>
</mapper>