Compare commits

..

No commits in common. "48482d8b42d6ff9c03f602eb21ba0124cb8f6018" and "bf0fa441d942498b97dbe1ad9f67ee9ce01078c2" have entirely different histories.

1 changed files with 1 additions and 2 deletions

View File

@ -24,7 +24,6 @@ type AiTask struct {
Status int32 `gorm:"column:status;not null;default:1" json:"status"` Status int32 `gorm:"column:status;not null;default:1" json:"status"`
DeleteAt time.Time `gorm:"column:delete_at" json:"delete_at"` DeleteAt time.Time `gorm:"column:delete_at" json:"delete_at"`
UseCase string `gorm:"column:use_case;not null" json:"use_case"` // 适用场景 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执行
} }
// TableName AiTask's table name // TableName AiTask's table name