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