git-subtree-dir: server git-subtree-mainline:c4e617ada7git-subtree-split:e64421295f
17 lines
630 B
Go
17 lines
630 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
type WardrobeItem struct {
|
|
Id int64 `orm:"id" json:"id"`
|
|
UserId int64 `orm:"user_id" json:"user_id"`
|
|
PhotoUrl string `orm:"photo_url" json:"photo_url"`
|
|
Name string `orm:"name" json:"name"`
|
|
Category string `orm:"category" json:"category"`
|
|
Season string `orm:"season" json:"season"`
|
|
StyleTags string `orm:"style_tags" json:"style_tags"`
|
|
ColorInfo string `orm:"color_info" json:"color_info"`
|
|
Status int `orm:"status" json:"status"`
|
|
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
|
|
}
|