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

8 lines
161 B
Go
Raw Normal View History

package model
type Metadata struct {
2023-04-09 13:35:34 +08:00
ID uint `gorm:"primarykey"`
Key string `gorm:"uniqueIndex;not null"`
Value string `gorm:"not null;default:''"`
}