Files
InfoGenie/infogenie-backend-go/internal/model/site_60s_disabled.go
2026-03-28 20:59:52 +08:00

9 lines
343 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package model
// Site60sDisabled 记录在 60s API 列表中隐藏的功能项(仅存 feature_id与前端 Api60sConfig 中 item.id 一致)
type Site60sDisabled struct {
FeatureID string `gorm:"primaryKey;type:varchar(96);not null" json:"feature_id"`
}
func (Site60sDisabled) TableName() string { return "site_60s_disabled" }