添加批量接口

finance
杨赟 2 years ago
parent bb5458ee0e
commit 36b86eb167

@ -119,6 +119,24 @@ func (s *sku) GetImgs(ctx context.Context, skuId uint) (reply []SkuImg, err erro
return return
} }
type SkusImg struct {
Id uint `json:"id"`
SkuId uint `json:"skuId"`
Path string `json:"path"`
ReplacePath string `json:"replacePath"`
Sort uint `json:"sort"`
}
// GetSkusImgs @Title 批量获取预览图
func (s *sku) GetSkusImgs(ctx context.Context, skuId uint) (reply []SkusImg, err error) {
xClient, err := client.GetClient(s)
if err != nil {
return
}
err = xClient.Call(ctx, "GetSkusImgs", skuId, &reply)
return
}
type SkuSpecification struct { type SkuSpecification struct {
Name string `json:"name"` Name string `json:"name"`
Attributes []SkuAttribute `json:"attributes"` Attributes []SkuAttribute `json:"attributes"`
@ -188,3 +206,19 @@ func (s *sku) Adopt(ctx context.Context, skuIds []uint) (reply []AdoptItem, err
err = xClient.Call(ctx, "Adopt", skuIds, &reply) err = xClient.Call(ctx, "Adopt", skuIds, &reply)
return return
} }
type ArgsSkuReplaceImg struct {
SkuId uint // 商品id
ImgId uint // 图片id
ImgPath string // 图片路径
}
// ReplaceImg @Title 替换图片
func (s *sku) ReplaceImg(ctx context.Context, args ArgsSkuReplaceImg) error {
reply := 0
xClient, err := client.GetClient(s)
if err != nil {
return err
}
return xClient.Call(ctx, "ReplaceImg", args, &reply)
}

@ -240,19 +240,3 @@ func (s *sku) EditAdjust(ctx context.Context, args ArgsSkuAdjustType) error {
} }
return xClient.Call(ctx, "EditAdjust", args, &reply) return xClient.Call(ctx, "EditAdjust", args, &reply)
} }
type ArgsSkuReplaceImg struct {
SkuId uint // 商品id
ImgId uint // 图片id
ImgPath string // 图片路径
}
// ReplaceImg @Title 替换图片
func (s *sku) ReplaceImg(ctx context.Context, args ArgsSkuReplaceImg) error {
reply := 0
xClient, err := client.GetClient(s)
if err != nil {
return err
}
return xClient.Call(ctx, "ReplaceImg", args, &reply)
}

Loading…
Cancel
Save