Compare commits

...

2 Commits

Author SHA1 Message Date
fuzhongyun 9f132dc99c Merge branch 'v3' into test 2025-11-24 09:54:15 +08:00
fuzhongyun 65aa6ca411 feat: 增加UseCase字段 2025-11-24 09:53:10 +08:00
1 changed files with 1 additions and 0 deletions

View File

@ -23,6 +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"` // 适用场景
}
// TableName AiTask's table name