12345678910111213141516171819202122 |
- // 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 TableNameClientDatum = "client_data"
- // ClientDatum mapped from table <client_data>
- type ClientDatum struct {
- ID int64 `gorm:"column:id;type:bigint(20);primaryKey;autoIncrement:true" json:"id"`
- Playerid int64 `gorm:"column:playerid;type:bigint(20);index:IDX_client_data_playerid,priority:1" json:"playerid"`
- Videogift string `gorm:"column:videogift;type:text" json:"videogift"`
- CoinGifts string `gorm:"column:coinGifts;type:text" json:"coinGifts"`
- RoleRand string `gorm:"column:roleRand;type:text" json:"roleRand"`
- Boxs string `gorm:"column:boxs;type:text" json:"boxs"`
- }
- // TableName ClientDatum's table name
- func (*ClientDatum) TableName() string {
- return TableNameClientDatum
- }
|