mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
19 lines
494 B
Go
19 lines
494 B
Go
package vo
|
|
|
|
import (
|
|
"chatplus/core/types"
|
|
"time"
|
|
)
|
|
|
|
type SdJob struct {
|
|
Id uint `json:"id"`
|
|
Type string `json:"type"`
|
|
UserId int `json:"user_id"`
|
|
TaskId string `json:"task_id"`
|
|
ImgURL string `json:"img_url"`
|
|
Params types.SdTaskParams `json:"params"`
|
|
Progress int `json:"progress"`
|
|
Prompt string `json:"prompt"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
}
|