fixed markdown generating styles

This commit is contained in:
RockYang
2024-04-19 18:22:45 +08:00
parent b584b4bfb6
commit caa538a1d0
9 changed files with 53 additions and 12 deletions

View File

@@ -0,0 +1,16 @@
package model
import "time"
type DallJob struct {
Id uint `gorm:"primarykey;column:id"`
UserId int
TaskId string
Prompt string
ImgURL string
Publish bool
Power int
Progress int
ErrMsg string
CreatedAt time.Time
}