28 lines
960 B
Go
28 lines
960 B
Go
// 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 TableNameAiGenerateLog = "ai_generate_log"
|
|
|
|
// AiGenerateLog mapped from table <ai_generate_log>
|
|
type AiGenerateLog struct {
|
|
ID int32 `gorm:"column:id;primaryKey;autoIncrement:true" json:"id"`
|
|
TaskID string `gorm:"column:task_id;not null" json:"task_id"`
|
|
Type string `gorm:"column:type" json:"type"`
|
|
RequestContent string `gorm:"column:request_content" json:"request_content"`
|
|
ResponseContent string `gorm:"column:response_content" json:"response_content"`
|
|
ToolSelect string `gorm:"column:tool_select" json:"tool_select"`
|
|
CreatedAt time.Time `gorm:"column:created_at" json:"created_at"`
|
|
}
|
|
|
|
// TableName AiGenerateLog's table name
|
|
func (*AiGenerateLog) TableName() string {
|
|
return TableNameAiGenerateLog
|
|
}
|