package model // AIMessage AI 聊天消息 type AIMessage struct { Base UserID uint `gorm:"index" json:"user_id"` PetID *uint `json:"pet_id"` Session string `gorm:"size:64;index" json:"session"` Role string `gorm:"size:8" json:"role"` // user / ai Text string `gorm:"type:text" json:"text"` }