idiommatch.gen.go 929 B

1234567891011121314151617181920212223
  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 TableNameIdiommatch = "idiommatch"
  6. // Idiommatch mapped from table <idiommatch>
  7. type Idiommatch struct {
  8. Playerid int64 `gorm:"column:playerid;type:bigint(20);primaryKey" json:"playerid"`
  9. Ink string `gorm:"column:ink;type:text" json:"ink"`
  10. Score string `gorm:"column:score;type:text" json:"score"`
  11. Scene string `gorm:"column:scene;type:text" json:"scene"`
  12. IdiomRewards string `gorm:"column:idiomRewards;type:text" json:"idiomRewards"`
  13. IdiomPreRewards string `gorm:"column:idiomPreRewards;type:text" json:"idiomPreRewards"`
  14. StartTick int64 `gorm:"column:startTick;type:bigint(20)" json:"startTick"`
  15. }
  16. // TableName Idiommatch's table name
  17. func (*Idiommatch) TableName() string {
  18. return TableNameIdiommatch
  19. }