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

9 lines
375 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
// SiteAIModelDisabled 记录在 AI 应用列表中隐藏的功能项(仅存 app_id与前端 StaticPageConfig 中 AI_MODEL_APPS 的索引或唯一标识对应)
type SiteAIModelDisabled struct {
AppID string `gorm:"primaryKey;type:varchar(96);not null" json:"app_id"`
}
func (SiteAIModelDisabled) TableName() string { return "site_ai_model_disabled" }