mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-05 05:37:41 +08:00
20 lines
580 B
Go
20 lines
580 B
Go
package vo
|
|
|
|
import "time"
|
|
|
|
type MidJourneyJob struct {
|
|
Id uint `json:"id"`
|
|
Type string `json:"type"`
|
|
UserId int `json:"user_id"`
|
|
ChannelId string `json:"channel_id"`
|
|
TaskId string `json:"task_id"`
|
|
MessageId string `json:"message_id"`
|
|
ReferenceId string `json:"reference_id"`
|
|
ImgURL string `json:"img_url"`
|
|
OrgURL string `json:"org_url"`
|
|
Hash string `json:"hash"`
|
|
Progress int `json:"progress"`
|
|
Prompt string `json:"prompt"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
}
|