package sku type sale struct { } type SaleHandleItem struct { SkuId uint `json:"skuId"` Error string `json:"error"` } type ReplySaleSkuItemLists struct { Total int64 `json:"total"` Lists []SaleSkuItem `json:"lists"` } type SaleSkuItem struct { Id uint `json:"id"` SkuId uint `json:"skuId"` }