1234567891011121314151617181920212223242526272829303132333435363738 |
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- package model
- const TableNameWxpayPlayer = "wxpay_player"
- // WxpayPlayer mapped from table <wxpay_player>
- type WxpayPlayer struct {
- Playerid int64 `gorm:"column:playerid;type:bigint(20);primaryKey" json:"playerid"`
- BuyStatis string `gorm:"column:buyStatis;type:text" json:"buyStatis"`
- OrderBox string `gorm:"column:orderBox;type:text" json:"orderBox"`
- VipGoods string `gorm:"column:vipGoods;type:text" json:"vipGoods"`
- DailyDiscount string `gorm:"column:dailyDiscount;type:text" json:"dailyDiscount"`
- RoleGift string `gorm:"column:roleGift;type:text" json:"roleGift"`
- Invite string `gorm:"column:invite;type:text" json:"invite"`
- AccPay string `gorm:"column:accPay;type:text" json:"accPay"`
- Balance int32 `gorm:"column:balance;type:int(11)" json:"balance"`
- LuckDraw string `gorm:"column:luckDraw;type:text" json:"luckDraw"`
- Growth string `gorm:"column:growth;type:text" json:"growth"`
- BoxKeyGift string `gorm:"column:boxKeyGift;type:text" json:"boxKeyGift"`
- NewYearGift string `gorm:"column:newYearGift;type:text" json:"newYearGift"`
- Fifteen string `gorm:"column:fifteen;type:text" json:"fifteen"`
- TombSweep string `gorm:"column:tombSweep;type:text" json:"tombSweep"`
- Lady38 string `gorm:"column:lady38;type:text" json:"lady38"`
- SpecialGift string `gorm:"column:specialGift;type:text" json:"specialGift"`
- RichMan string `gorm:"column:richMan;type:text" json:"richMan"`
- DragonBoat string `gorm:"column:dragonBoat;type:text" json:"dragonBoat"`
- WeekendGift string `gorm:"column:weekendGift;type:text" json:"weekendGift"`
- QiXiGift string `gorm:"column:qiXiGift;type:text" json:"qiXiGift"`
- MoonFestivalGift string `gorm:"column:moonFestivalGift;type:text" json:"moonFestivalGift"`
- }
- // TableName WxpayPlayer's table name
- func (*WxpayPlayer) TableName() string {
- return TableNameWxpayPlayer
- }
|