25 lines
996 B
Go
25 lines
996 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type SenlinAgentAISession struct {
|
|
ID uint `gorm:"primaryKey"`
|
|
Identity string `gorm:"type:char(36);uniqueIndex"`
|
|
ProjectID uint `gorm:"index;not null"`
|
|
ProjectIdentity string `gorm:"type:char(36);index"`
|
|
CreatedBy uint `gorm:"index;not null"`
|
|
CreatedByIdentity string `gorm:"type:char(36);index"`
|
|
ExpertID *uint `gorm:"index"`
|
|
ExpertIdentity *string `gorm:"type:char(36);index"`
|
|
Expert *SenlinAgentAIExpert `gorm:"foreignKey:ExpertID"`
|
|
Title string `gorm:"not null"`
|
|
Context string `gorm:"type:text"`
|
|
Status string `gorm:"not null;default:ready"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|
|
|
|
func (SenlinAgentAISession) TableName() string {
|
|
return "senlin_agent_ai_sessions"
|
|
}
|