geekai/api/store/model/dalle_job.go
2024-04-21 20:23:47 +08:00

17 lines
255 B
Go

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