Files
slogan/server/styleagent/model/entity/outfit_generation_task.go
T
admin a6de9ebd12 Add 'server/' from commit 'e64421295fff83acbb6d6ab3d3b27f3ef8368f00'
git-subtree-dir: server
git-subtree-mainline: c4e617ada7
git-subtree-split: e64421295f
2026-08-04 15:02:35 +08:00

18 lines
784 B
Go

package entity
import "github.com/gogf/gf/v2/os/gtime"
type OutfitGenerationTask struct {
Id int64 `orm:"id" json:"id"`
UserId int64 `orm:"user_id" json:"user_id"`
StartDate string `orm:"start_date" json:"start_date"`
EndDate string `orm:"end_date" json:"end_date"`
Location string `orm:"location" json:"location"`
WeatherSnapshot string `orm:"weather_snapshot" json:"weather_snapshot"`
Status string `orm:"status" json:"status"`
Error string `orm:"error" json:"error"`
ModelName string `orm:"model_name" json:"model_name"`
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
UpdatedAt *gtime.Time `orm:"updated_at" json:"updated_at"`
}