package models import "time" type SenlinAgentProject struct { ID uint `gorm:"primaryKey"` OwnerID uint `gorm:"index;not null"` Name string `gorm:"not null"` Description string CreatedAt time.Time UpdatedAt time.Time } func (SenlinAgentProject) TableName() string { return "senlin_agent_projects" }