package md import "applet/app/db/model" type MallGoodListResp struct { GoodsId string `json:"id"` // 商品id Price string `json:"price"` CreateAt string `json:"create_at"` UpdateAt string `json:"update_at"` SkuList []model.Sku `json:"skuList"` Title string `json:"title"` Image string `json:"image"` SaleStateText string `json:"state_text"` SaleState int `json:"sale_state"` CategoryId string `json:"category_id"` Sales int `json:"sales"` Spe []map[string]interface{} `json:"spe"` }