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"`