12345678910111213141516171819 |
- // 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 TableNamePlayerDp = "player_dps"
- // PlayerDp mapped from table <player_dps>
- type PlayerDp struct {
- ID int64 `gorm:"column:id;type:bigint(20) unsigned;primaryKey;autoIncrement:true" json:"id"`
- Playerid int64 `gorm:"column:playerid;type:bigint(20);not null" json:"playerid"` // 用户ID
- Dps int32 `gorm:"column:dps;type:int(11);index:event_id,priority:1" json:"dps"` // dps
- }
- // TableName PlayerDp's table name
- func (*PlayerDp) TableName() string {
- return TableNamePlayerDp
- }
|