feat: 体现增加每次体现次数上限

This commit is contained in:
张松
2024-12-26 12:59:09 +08:00
parent ce9d92508e
commit 650b3bc4ea
8 changed files with 49 additions and 7 deletions

View File

@@ -164,6 +164,10 @@
order by c.create_at desc
</select>
<select id="selectTodayCashCount" resultType="java.lang.Integer">
select count(*) from cash_out where create_at > CURDATE() and user_id=#{userId} and state=#{state};
</select>
<update id="updateMayMoney">
update user_money set
@@ -177,4 +181,4 @@
</update>
</mapper>
</mapper>