spider-scheduler/pkg/dao/model/fans.go

17 lines
254 B
Go
Raw Normal View History

package model
2023-04-09 13:35:34 +08:00
import (
"time"
)
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"`
}
func (Fans) TableName() string {
return "fans"
}