|
|
|
|
@ -2,6 +2,7 @@ package goods
|
|
|
|
|
|
|
|
|
|
import service "src/module/service"
|
|
|
|
|
import skuPrice "src/module/skuPrice"
|
|
|
|
|
import coupon "src/module/coupon"
|
|
|
|
|
|
|
|
|
|
func (Goods) TableName() string {
|
|
|
|
|
return "goods"
|
|
|
|
|
@ -42,5 +43,5 @@ type Goods struct {
|
|
|
|
|
DispatchTypeArr []string `json:"dispatch_type_arr"` // 派送类型数组
|
|
|
|
|
Service []service.Service `json:"service"` // 服务列表
|
|
|
|
|
SKU []string `json:"sku"` // SKU列表
|
|
|
|
|
Coupons []Coupon `json:"coupons"` // 优惠券列表
|
|
|
|
|
Coupons []coupon.Coupon `json:"coupons"` // 优惠券列表
|
|
|
|
|
}
|
|
|
|
|
|