Compare commits

..

No commits in common. "17ff02d46167c2a06eab4eeac59c8a7ba9260ed7" and "4497e30a50b5fbb3a37f90c340417e813a6f5a0e" have entirely different histories.

1 changed files with 1 additions and 2 deletions

View File

@ -23,8 +23,7 @@ type AiTask struct {
UpdateAt time.Time `gorm:"column:update_at;default:CURRENT_TIMESTAMP" json:"update_at"`
Status int32 `gorm:"column:status;not null;default:1" json:"status"`
DeleteAt time.Time `gorm:"column:delete_at" json:"delete_at"`
UseCase string `gorm:"column:use_case;not null" json:"use_case"` // 适用场景
TagType int32 `gorm:"column:tag_type;not null;default:1" json:"tag_type"` // 标签类型 1.AI日常 2.AI查询 3.AI执行
UseCase string `gorm:"column:use_case;not null" json:"use_case"` // 适用场景
}
// TableName AiTask's table name