订单详情增加用户信息

This commit is contained in:
苏尹岚
2020-01-13 18:18:58 +08:00
parent 899c7c117f
commit ff84855e54
2 changed files with 20 additions and 5 deletions

View File

@@ -39,9 +39,13 @@ type GoodsOrderExt struct {
CityName string `json:"cityName"`
PayPercentage int `json:"payPercentage"`
SkuInfo string `json:"skuInfo,omitempty"`
ShortSkuInfo `json:"-"`
SkuList []*ShortSkuInfo `json:"skuList,omitempty"`
SkuInfo string `json:"skuInfo,omitempty"`
ShortSkuInfo `json:"-"`
SkuList []*ShortSkuInfo `json:"skuList,omitempty"`
Count int `json:"count"`
ShopPrice int64 `json:"shopPrice"`
AvgPrice int64 `json:"avgPrice"`
BadCommentCount int `json:"badCommentCount"`
}
type OrderSkuExt struct {