10 lines
361 B
Go
10 lines
361 B
Go
package model
|
||
|
||
// Site60sUpstream 单例行(id=1):60s API 上游节点,仅管理员可改
|
||
type Site60sUpstream struct {
|
||
ID uint `gorm:"primaryKey" json:"id"`
|
||
SourceID string `gorm:"type:varchar(32);not null;default:self" json:"source_id"` // self | official
|
||
}
|
||
|
||
func (Site60sUpstream) TableName() string { return "site_60s_upstream" }
|