Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AdminUser ¶
type AggGroupInfo ¶ added in v1.1.25
type AggInfo ¶ added in v1.0.4
type AggInfo struct { TgUserId int64 `json:"tg_user_id"` TgUserName string `json:"tg_user_name"` TimeUnit string `json:"time_unit"` TotalFlow float64 `json:"total_flow"` //流水 --下注总额 TotalBankerWin float64 `json:"total_banker_win"` //庄家赢 TotalBankerLose float64 `json:"total_banker_lose"` //庄家输 TotalBankerFee float64 `json:"total_banker_fee"` //庄家扣点收益 TotalGroupProfit float64 `json:"total_group_profit"` //集团收益 TotalWin float64 `json:"total_win"` //输赢 -- TotalRecharge float64 `json:"total_recharge"` //充值 TotalWithdraw float64 `json:"total_withdraw"` //提现 TotalFanShui float64 `json:"total_fan_shui"` //反水 TotalBets int `json:"total_bets"` //下注数量 }
type MenuInfo ¶
type MenuInfo struct { ID int64 `json:"id"` // 权限ID Name string `json:"name"` // 权限名称 RouteName string `json:"route_name"` // 权限路由名称 Route string `json:"route"` // 权限路由路径 ParentId int64 `json:"parent_id"` IsDisplay bool `json:"is_display"` IsButton byte `json:"is_button"` Children []*MenuInfo `json:"children"` }
type MoneyRec ¶
type MoneyRec struct { model.GroupUserMoneyRec GroupTitle string `gorm:"-" json:"group_title"` UserDisplayName string `gorm:"-" json:"user_display_name"` MoneyTypeName string `gorm:"-" json:"money_type_name"` }
type TgUser ¶
type TgUser struct { TgUserId int64 `gorm:"type:bigint;index:tg_user_id;comment:telegram user id" json:"tg_user_id"` UserName string `gorm:"type:varchar(100);default:''" json:"user_name"` FirstName string `gorm:"type:varchar(100);default:''" json:"first_name"` LastName string `gorm:"type:varchar(100);default:''" json:"last_name"` }
func (*TgUser) DisplayName ¶
type WithdrawInfo ¶ added in v1.0.7
type WithdrawInfo struct { model.UserWithdraw DisplayName string `gorm:"-" json:"display_name"` }
Click to show internal directories.
Click to hide internal directories.