|
|
|
@ -222,3 +222,19 @@ func (s *sku) ReplaceImg(ctx context.Context, args ArgsSkuReplaceImg) error {
|
|
|
|
|
}
|
|
|
|
|
return xClient.Call(ctx, "ReplaceImg", args, &reply)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ArgsSkuReplaceImgJdSku struct {
|
|
|
|
|
JdSkuId uint64 // 京东skuId
|
|
|
|
|
ImgSort uint // 图片排序
|
|
|
|
|
ImgPath string // 图片路径
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ReplaceImgJdSku @Title 根据JdSkuId sort替换图片
|
|
|
|
|
func (s *sku) ReplaceImgJdSku(ctx context.Context, args ArgsSkuReplaceImgJdSku) error {
|
|
|
|
|
reply := 0
|
|
|
|
|
xClient, err := client.GetClient(s)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
return xClient.Call(ctx, "ReplaceImgJdSku", args, &reply)
|
|
|
|
|
}
|
|
|
|
|