// Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. package model import ( "time" ) const TableNameAiBotGroup = "ai_bot_group" // AiBotGroup mapped from table type AiBotGroup struct { GroupID int32 `gorm:"column:group_id;primaryKey;autoIncrement:true" json:"group_id"` ConversationID string `gorm:"column:conversation_id;not null;comment:会话ID" json:"conversation_id"` // 会话ID Title string `gorm:"column:title;not null;comment:群名称" json:"title"` // 群名称 ToolList string `gorm:"column:tool_list;not null;comment:开通工具列表" json:"tool_list"` // 开通工具列表 Status int32 `gorm:"column:status;not null;default:1" json:"status"` DeleteAt *time.Time `gorm:"column:delete_at" json:"delete_at"` CreateAt time.Time `gorm:"column:create_at;default:CURRENT_TIMESTAMP" json:"create_at"` } // TableName AiBotGroup's table name func (*AiBotGroup) TableName() string { return TableNameAiBotGroup }