client_data.gen.go 869 B

12345678910111213141516171819202122
  1. // Code generated by gorm.io/gen. DO NOT EDIT.
  2. // Code generated by gorm.io/gen. DO NOT EDIT.
  3. // Code generated by gorm.io/gen. DO NOT EDIT.
  4. package model
  5. const TableNameClientDatum = "client_data"
  6. // ClientDatum mapped from table <client_data>
  7. type ClientDatum struct {
  8. ID int64 `gorm:"column:id;type:bigint(20);primaryKey;autoIncrement:true" json:"id"`
  9. Playerid int64 `gorm:"column:playerid;type:bigint(20);index:IDX_client_data_playerid,priority:1" json:"playerid"`
  10. Videogift string `gorm:"column:videogift;type:text" json:"videogift"`
  11. CoinGifts string `gorm:"column:coinGifts;type:text" json:"coinGifts"`
  12. RoleRand string `gorm:"column:roleRand;type:text" json:"roleRand"`
  13. Boxs string `gorm:"column:boxs;type:text" json:"boxs"`
  14. }
  15. // TableName ClientDatum's table name
  16. func (*ClientDatum) TableName() string {
  17. return TableNameClientDatum
  18. }