From 95309c67de1f6bc7a7cd72ea5d3537e06c1c359a Mon Sep 17 00:00:00 2001 From: sian Date: Tue, 6 Sep 2022 11:02:19 +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/category.go | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/supply/category.go b/supply/category.go index b16decf..0795cfc 100644 --- a/supply/category.go +++ b/supply/category.go @@ -75,14 +75,3 @@ func (c *category) FindByIds(ctx context.Context, args ArgsCategoryFindByIds) (r err = xClient.Call(ctx, "FindByIds", args, &result) return } - -// GetThreeLevelAll @Title 获取全部三级分类 -func (c *category) GetThreeLevelAll(ctx context.Context) (result []ThirdCategoryItem, err error) { - xClient, err := client.GetClient(c) - if err != nil { - return - } - args := 0 - err = xClient.Call(ctx, "GetThreeLevelAll", args, &result) - return -}