git-subtree-dir: server git-subtree-mainline:c4e617ada7git-subtree-split:e64421295f
21 lines
892 B
Go
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"`
|
|
}
|