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.
|
- 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"`
- }
|