From b4827419d00626633e72cbbec7696ce23255888e Mon Sep 17 00:00:00 2001 From: laodaming <11058467+laudamine@user.noreply.gitee.com> Date: Mon, 30 Oct 2023 16:19:44 +0800 Subject: [PATCH] fix --- server/product-template-tag/internal/types/types.go | 3 +-- server_api/product-template-tag.api | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/server/product-template-tag/internal/types/types.go b/server/product-template-tag/internal/types/types.go index 69de69b1..5da1dc14 100644 --- a/server/product-template-tag/internal/types/types.go +++ b/server/product-template-tag/internal/types/types.go @@ -6,8 +6,7 @@ import ( ) type GetProductTemplateTagsReq struct { - Limit int `form:"limit"` - Logo string `form:"logo"` + Logo string `form:"logo"` } type GetProductTemplateTagsRsp struct { diff --git a/server_api/product-template-tag.api b/server_api/product-template-tag.api index 9355bb33..507a50bd 100644 --- a/server_api/product-template-tag.api +++ b/server_api/product-template-tag.api @@ -20,8 +20,7 @@ service product-template-tag { //获取产品模板标签列表 type GetProductTemplateTagsReq { - Limit int `form:"limit"` - Logo string `form:"logo"` + Logo string `form:"logo"` } type GetProductTemplateTagsRsp { Id int64 `json:"id"`