This commit is contained in:
gazebo
2018-09-14 15:44:13 +08:00
parent 87ddd8aa52
commit 2350e182a5
7 changed files with 104 additions and 45 deletions

View File

@@ -203,3 +203,12 @@ func (*SkuNamePlaceBind) TableUnique() [][]string {
[]string{"NameID", "PlaceCode"},
}
}
type SkuNameExt struct {
SkuName
Skus []*Sku `orm:"-" json:"skus"`
SkusStr string `json:"-"`
Places []int `orm:"-" json:"places"`
PlacesStr string `json:"-"`
}