You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
642 B
14 lines
642 B
package shop
|
|
|
|
//// 一对多
|
|
//type BrandManyGoods struct {
|
|
// BrandID uint `json:"brandId"`
|
|
// BrandName string `json:"brandName"`
|
|
// BrandLogoUrl string `json:"brandLogoUrl"`
|
|
// BrandExpressTotalAmount decimal.Decimal `json:"brandExpressTotalAmount"`
|
|
// BrandGoodsTotalAmount decimal.Decimal `json:"brandGoodsTotalAmount"`
|
|
// BrandGoodsTotalCount uint `json:"brandGoodsTotalCount"`
|
|
// Goods []order.GoodsDetail `json:"goods"`
|
|
// Coupon *order.CouponDetail `json:"coupon"` // 品牌优惠券
|
|
//}
|