mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-05 13:47:47 +08:00
27 lines
588 B
Go
27 lines
588 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type MidJourneyJob struct {
|
|
Id uint `gorm:"primarykey;column:id"`
|
|
Type string
|
|
UserId int
|
|
TaskId string
|
|
ChannelId string
|
|
MessageId string
|
|
ReferenceId string
|
|
ImgURL string
|
|
OrgURL string // 原图地址
|
|
Hash string // message hash
|
|
Progress int
|
|
Prompt string
|
|
UseProxy bool // 是否使用反代加载图片
|
|
Publish bool //是否发布图片到画廊
|
|
ErrMsg string // 报错信息
|
|
CreatedAt time.Time
|
|
}
|
|
|
|
func (MidJourneyJob) TableName() string {
|
|
return "chatgpt_mj_jobs"
|
|
}
|