mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
21 lines
360 B
Go
21 lines
360 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type MidJourneyJob struct {
|
|
Id uint `gorm:"primarykey;column:id"`
|
|
UserId uint
|
|
ChatId string
|
|
MessageId string
|
|
ReferenceId string
|
|
Hash string
|
|
Content string
|
|
Prompt string
|
|
Image string
|
|
CreatedAt time.Time
|
|
}
|
|
|
|
func (MidJourneyJob) TableName() string {
|
|
return "chatgpt_mj_jobs"
|
|
}
|