feat: add dashboard and virtual pay enhancements

This commit is contained in:
王鹏
2026-07-29 14:34:54 +08:00
parent 2250f744d1
commit 349f1c0374
55 changed files with 3085 additions and 213 deletions

View File

@@ -113,6 +113,18 @@
where id = #{id}
</update>
<update id="updateProjectQuarkUrl">
update tt_project_info
set project_url = #{projectUrl}
where id = #{id}
</update>
<update id="updateProjectBaiduUrl">
update tt_project_info
set project_baidu_url = #{projectBaiduUrl}
where id = #{id}
</update>
<delete id="deleteTtProjectInfoById" parameterType="Integer">
delete from tt_project_info where id = #{id}
</delete>