提现 / 定时任务

This commit is contained in:
2024-12-04 18:18:38 +08:00
parent 32a8eb78d6
commit d26a250761
16 changed files with 338 additions and 69 deletions

View File

@@ -14,6 +14,17 @@
where user_id=#{userId}
</update>
<update id="updateMayAmount">
update user_money set
<if test="type==1">
amount=amount+#{amount}
</if>
<if test="type==2">
amount=amount-#{amount}
</if>
where user_id=#{userId}
</update>
<update id="updateSysMoney">
update user_money set
<if test="type==1">