mirror of
https://github.com/yangjian102621/geekai.git
synced 2026-08-12 18:50:58 +00:00
9ccff4efbc
- Sync backend and frontend from GeekAI Plus v4.3.0 - Remove commercial License flows and update open-source deployment defaults - Preserve Docker Compose deployment and bump image tags to v4.3.0 BREAKING CHANGE: commercial License configuration and related endpoints are removed
16 lines
407 B
Go
16 lines
407 B
Go
package vo
|
|
|
|
type ImageJob struct {
|
|
Id uint `json:"id"`
|
|
UserId int `json:"user_id"`
|
|
Prompt string `json:"prompt"`
|
|
Params string `json:"params"`
|
|
ImgURL string `json:"img_url"`
|
|
OrgURL string `json:"org_url"`
|
|
Publish bool `json:"publish"`
|
|
Power int `json:"power"`
|
|
Progress int `json:"progress"`
|
|
ErrMsg string `json:"err_msg"`
|
|
CreatedAt int64 `json:"created_at"`
|
|
}
|