Initial commit

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 13:57:10 +08:00
co-authored by Claude Opus 5
commit 8679200f41
1897 changed files with 257900 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
package router
import (
"91porn-server/app/api/walletctrl"
"github.com/gin-gonic/gin"
)
func walletRouter(router *gin.RouterGroup) {
group := router.Group("/mine")
{
//获取钱包数量
group.GET("/wallet", walletctrl.GetWalletAmount)
//获取钱包数量
group.GET("/qianbao", walletctrl.GetWalletAmount)
//我的收益入支出(玩家与玩家之间)
group.GET("/income/works", walletctrl.GetWorksIncome)
group.GET("/bills", walletctrl.GetBill)
// group.GET("/zhangdan", walletctrl.GetBill)
group.GET("/iIncomes", walletctrl.GetIncome)
group.GET("/getAllIncome", walletctrl.GetAllIncome)
group.GET("/zhangdan", walletctrl.GetNewBill)
group.GET("/fruitCoin/bill", walletctrl.FruitCoinBill)
}
}