印度包网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

67 lines
3.3 KiB

package routers
import (
handler "server/modules/backend/handler/statistics"
"github.com/gin-gonic/gin"
)
func statistics(e *gin.Engine) {
e.POST("/statistics/reviewData", handler.ReviewData)
e.POST("/statistics/reviewDataEdit", handler.ReviewDataEdit)
e.POST("/statistics/reviewAppSummary", handler.ReviewAppSummary)
e.POST("/statistics/platformData", handler.PlatformData)
e.POST("/statistics/reviewChannelData", handler.ReviewChannelData)
e.POST("/statistics/reviewLoginWay", handler.ReviewLoginWay)
e.POST("/statistics/reviewWithdarwData", handler.ReviewWithdrawData)
e.POST("/statistics/realData", handler.RealData)
e.POST("/statistics/realDataBalance", handler.RealDataBalance)
e.POST("/statistics/realDataBalanceRoomGame", handler.RealDataBalanceRoomGame)
e.POST("/statistics/realDataBalanceMillionGame", handler.RealDataBalanceMillionGame)
// e.POST("/statistics/realDataBalanceAndarbahar", handler.RealDataBalanceAndarbahar)
e.POST("/statistics/newPlayerData", handler.NewPlayerData)
e.POST("/statistics/output", handler.NewPlayerData)
// e.POST("/statistics/gameData", handler.GameData)
// e.POST("/statistics/activePlayerData", handler.ActivePlayerData)
// e.POST("/statistics/financialData", handler.FinancialData)
// e.POST("/statistics/financialData/robotBalanceDeatil", handler.FinancialDataRobotDetail)
// e.POST("/statistics/financialData/millionBalanceDetail", handler.FinancialDataMillionDetail)
// e.POST("/statistics/financialData/tableFee", handler.FinancialDataTableFee)
// e.POST("/statistics/financialData/playerWin", handler.FinancialDataPlayerWin)
// e.POST("/statistics/financialData/robotWin", handler.FinancialDataRobotWin)
// e.POST("/statistics/financialData/black", handler.FinancialDataBlack)
// e.POST("/statistics/rechargeData", handler.RechargeData)
// e.POST("/statistics/rechargeChannelData", handler.RechargeChannelData)
e.POST("/statistics/rechargeData/rechargeOrderList", handler.RechargeOrderList)
e.POST("/statistics/rechargeData/withdrawOrderList", handler.WithdrawOrderList)
e.POST("/statistics/rechargeData/queryWithdrawOrder", handler.QueryWithdrawOrder)
e.POST("/statistics/playData", handler.PlayData)
e.POST("/statistics/playGameData", handler.PlayGameData)
e.POST("/statistics/playGameDataRoomGame", handler.PlayGameDataRoomGame)
e.POST("/statistics/playGameDataMillionGame", handler.PlayGameDataMillionGame)
e.POST("/statistics/playGameRoomData", handler.PlayGameRoomData)
e.POST("/statistics/keepData", handler.KeepData)
e.POST("/statistics/rechargeKeepData", handler.RechargeKeepData)
e.POST("/statistics/withdrawList", handler.WithdrawListData)
e.POST("/statistics/withdrawDetail", handler.WithdrawListDetail)
// e.POST("/statistics/shareData", handler.ShareDataList)
e.POST("/statistics/rechargeTrend", handler.RechargeTrend)
e.POST("/statistics/rechargeTrendMap", handler.RechargeTrendMap)
e.POST("/statistics/roomGameAnalysis", handler.RoomGameAnalysis)
e.POST("/statistics/newRechargeData", handler.NewRechargeData)
e.POST("/statistics/rechargeFrequency", handler.RechargeFrequency)
// e.POST("/statistics/tpCardStatistics", handler.TpCardStatistics)
// slot 游戏历史
// e.POST("/statistics/slotGameHistory", handler.SlotGameHistory)
// slot游戏统计
// e.POST("/statistics/slotGameStatistics", handler.SlotGameStatistics)
}