2022-12-20 21:45:52 +08:00
|
|
|
package model
|
|
|
|
|
2023-04-09 13:35:34 +08:00
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
2022-12-20 21:45:52 +08:00
|
|
|
|
|
|
|
type Fans struct {
|
2023-04-09 13:35:34 +08:00
|
|
|
ID uint `gorm:"primarykey"`
|
|
|
|
CreatedAt time.Time
|
|
|
|
UID uint `gorm:"index;not null"`
|
|
|
|
Fans uint `gorm:"index;not null;default:0"`
|
2022-12-20 21:45:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (Fans) TableName() string {
|
|
|
|
return "fans"
|
|
|
|
}
|