This commit is contained in:
2026-08-03 12:14:50 +08:00
parent a338865025
commit 4e556ea78a
12 changed files with 337 additions and 51 deletions
@@ -8,6 +8,10 @@ type BodyMeasurement struct {
Height int `orm:"height" json:"height"`
Weight int `orm:"weight" json:"weight"`
SkinTone int `orm:"skin_tone" json:"skin_tone"`
Bust int `orm:"bust" json:"bust"`
Waist int `orm:"waist" json:"waist"`
Hip int `orm:"hip" json:"hip"`
Shoulder int `orm:"shoulder" json:"shoulder"`
FitParams string `orm:"fit_params" json:"fit_params"`
UpdatedAt *gtime.Time `orm:"updated_at" json:"updated_at"`
}
+1
View File
@@ -6,6 +6,7 @@ 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"`