player_divination.gen.go 653 B

12345678910111213141516171819
  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 TableNamePlayerDivination = "player_divination"
  6. // PlayerDivination mapped from table <player_divination>
  7. type PlayerDivination struct {
  8. Playerid int64 `gorm:"column:playerid;type:bigint(20);primaryKey" json:"playerid"`
  9. DvnStatis string `gorm:"column:dvnStatis;type:text" json:"dvnStatis"`
  10. DvnBuff string `gorm:"column:dvnBuff;type:text" json:"dvnBuff"`
  11. }
  12. // TableName PlayerDivination's table name
  13. func (*PlayerDivination) TableName() string {
  14. return TableNamePlayerDivination
  15. }