From dab532044417a188b97c8b330e12353a956e6032 Mon Sep 17 00:00:00 2001 From: laodaming <11058467+laudamine@user.noreply.gitee.com> Date: Wed, 2 Aug 2023 10:08:14 +0800 Subject: [PATCH] fix --- server/product/internal/logic/gettagproductlistlogic.go | 1 - server/product/internal/types/types.go | 1 - server_api/product.api | 1 - 3 files changed, 3 deletions(-) diff --git a/server/product/internal/logic/gettagproductlistlogic.go b/server/product/internal/logic/gettagproductlistlogic.go index bd17aa12..7badfd95 100644 --- a/server/product/internal/logic/gettagproductlistlogic.go +++ b/server/product/internal/logic/gettagproductlistlogic.go @@ -222,7 +222,6 @@ func (l *GetTagProductListLogic) dealWithTagMenuData(req dealWithTagMenuDataReq) tagTem := types.TagItem{ TagProductList: []interface{}{}, TypeName: *tagInfo.Title, - Description: *tagInfo.Description, TypeId: tagInfo.Id, Icon: *tagInfo.Icon, Sort: *tagInfo.Sort, diff --git a/server/product/internal/types/types.go b/server/product/internal/types/types.go index d374460a..f2d27f0a 100644 --- a/server/product/internal/types/types.go +++ b/server/product/internal/types/types.go @@ -259,7 +259,6 @@ type GetTagProductListRsp struct { type TagItem struct { TypeName string `json:"type_name"` - Description string `json:"description"` TypeId int64 `json:"type_id"` Icon string `json:"icon"` Sort int64 `json:"sort"` diff --git a/server_api/product.api b/server_api/product.api index 03fb29b6..48ac5a50 100644 --- a/server_api/product.api +++ b/server_api/product.api @@ -309,7 +309,6 @@ type GetTagProductListRsp { } type TagItem { TypeName string `json:"type_name"` - Description string `json:"description"` TypeId int64 `json:"type_id"` Icon string `json:"icon"` Sort int64 `json:"sort"`