// 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 TableNameAiTask = "ai_task" // AiTask mapped from table type AiTask struct { TaskID int32 `gorm:"column:task_id;primaryKey;autoIncrement:true" json:"task_id"` SysID int32 `gorm:"column:sys_id;not null" json:"sys_id"` Name string `gorm:"column:name;not null" json:"name"` Index string `gorm:"column:index;not null" json:"index"` Desc string `gorm:"column:desc;not null" json:"desc"` UseCase string `gorm:"column:use_case;not null;comment:适用场景" json:"use_case"` // 适用场景 TempPrompt string `gorm:"column:temp_prompt;not null;comment:提示词模板" json:"temp_prompt"` // 提示词模板 Type int32 `gorm:"column:type;not null;default:1;comment:类型,1:api,2:知识库" json:"type"` // 类型,1:api,2:知识库 Config string `gorm:"column:config" json:"config"` TagType int32 `gorm:"column:tag_type;comment:标签类型:1.AI日常 2.AI查询 3.AI执行" json:"tag_type"` // 标签类型:1.AI日常 2.AI查询 3.AI执行 CreateAt time.Time `gorm:"column:create_at;default:CURRENT_TIMESTAMP" json:"create_at"` UpdatedAt time.Time `gorm:"column:updated_at;default:CURRENT_TIMESTAMP" json:"updated_at"` IsShow int32 `gorm:"column:is_show;not null;default:1;comment:是否展示,1为展示,2为不展示" json:"is_show"` // 是否展示,1为展示,2为不展示 Status int32 `gorm:"column:status;not null;default:1" json:"status"` DeleteAt time.Time `gorm:"column:delete_at" json:"delete_at"` } // TableName AiTask's table name func (*AiTask) TableName() string { return TableNameAiTask }