geekai/api/store/model/dalle_job.go
2024-04-19 18:22:45 +08:00

17 lines
270 B
Go

package model
import "time"
type DallJob struct {
Id uint `gorm:"primarykey;column:id"`
UserId int
TaskId string
Prompt string
ImgURL string
Publish bool
Power int
Progress int
ErrMsg string
CreatedAt time.Time
}