123456789101112131415161718 |
- // 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 TableNameProcessaward = "processaward"
- // Processaward mapped from table <processaward>
- type Processaward struct {
- Playerid int64 `gorm:"column:playerid;type:bigint(20);primaryKey" json:"playerid"`
- Awards string `gorm:"column:awards;type:text" json:"awards"`
- }
- // TableName Processaward's table name
- func (*Processaward) TableName() string {
- return TableNameProcessaward
- }
|