面包店
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.
 
 
 
 
 

19 lines
768 B

  1. package md
  2. import "applet/app/db/model"
  3. type MallGoodListResp struct {
  4. GoodsId string `json:"id"` // 商品id
  5. Price string `json:"price"`
  6. CreateAt string `json:"create_at"`
  7. UpdateAt string `json:"update_at"`
  8. SkuList []model.Sku `json:"skuList"`
  9. Title string `json:"title"`
  10. Image string `json:"image"`
  11. SaleStateText string `json:"state_text"`
  12. SaleState int `json:"sale_state"`
  13. CategoryId string `json:"category_id"`
  14. Sales int `json:"sales"`
  15. Spe []map[string]interface{} `json:"spe"`
  16. }