Files
slogan/server/styleagent/model/entity/outfit_plan.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

21 lines
892 B
Go

package entity
import "github.com/gogf/gf/v2/os/gtime"
type OutfitPlan struct {
Id int64 `orm:"id" json:"id"`
TaskId int64 `orm:"task_id" json:"task_id"`
UserId int64 `orm:"user_id" json:"user_id"`
DateRange string `orm:"date_range" json:"date_range"`
Location string `orm:"location" json:"location"`
Title string `orm:"title" json:"title"`
Source string `orm:"source" json:"source"`
Score int `orm:"score" json:"score"`
MainFlag int `orm:"main_flag" json:"main_flag"`
HairstyleId int64 `orm:"hairstyle_id" json:"hairstyle_id"`
HairColor string `orm:"hair_color" json:"hair_color"`
WeatherRef string `orm:"weather_ref" json:"weather_ref"`
Occasion string `orm:"occasion" json:"occasion"`
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
}