Accept Merge Request #140: (yonghui -> mark)

Merge Request: 订单详情增加用户信息
Created By: @苏尹岚
Accepted By: @苏尹岚
URL: https://rosydev.coding.net/p/jx-callback/d/jx-callback/git/merge/140
This commit is contained in:
苏尹岚
2020-01-13 18:26:19 +08:00
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 {