From 57901d8bf9cb4815caa331226f81a73a0df14928 Mon Sep 17 00:00:00 2001 From: sian Date: Thu, 4 Aug 2022 17:22:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- supply/sku.go | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/supply/sku.go b/supply/sku.go index ddacfc0..54dc276 100644 --- a/supply/sku.go +++ b/supply/sku.go @@ -223,20 +223,3 @@ func (s *sku) DownShelves(ctx context.Context, args ArgsSkuDownShelves) error { } return xClient.Call(ctx, "DownShelves", args, &reply) } - -type ArgsSkuAdjustType struct { - SkuId uint - AdjustType uint - AdjustPrice decimal.Decimal - ApplyUserId uint -} - -// EditAdjust @Title 修改改价类型 -func (s *sku) EditAdjust(ctx context.Context, args ArgsSkuAdjustType) error { - reply := 0 - xClient, err := client.GetClient(s) - if err != nil { - return err - } - return xClient.Call(ctx, "EditAdjust", args, &reply) -}