From 115bd9b51f5d8eade4658f844de37516486c60e7 Mon Sep 17 00:00:00 2001 From: liujiandao <274878379@qq.com> Date: 星期六, 18 十一月 2023 17:25:25 +0800 Subject: [PATCH] crm获取aps项目模块信息 --- api/v1/faq.go | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/api/v1/faq.go b/api/v1/faq.go index 44dc341..350dae2 100644 --- a/api/v1/faq.go +++ b/api/v1/faq.go @@ -89,10 +89,12 @@ // @Tags 甯歌闂绠$悊 // @Summary 鑾峰彇甯歌闂鍒楄〃 // @Produce application/json +// @Param object body request.GetFaqList true "鍙傛暟" // @Success 200 {object} response.ListResponse{data=[]model.Faq} // @Router /api/faq/list [get] func (s *FaqApi) List(c *gin.Context) { - ctx, ok := contextx.NewContext(c, nil) + var params request.GetFaqList + ctx, ok := contextx.NewContext(c, params) if !ok { return } -- Gitblit v1.8.0