From ab3c9f33d01727222d58f6c95dcdbf4fbe275853 Mon Sep 17 00:00:00 2001 From: liguanjie Date: Wed, 10 Sep 2025 15:32:31 +0800 Subject: [PATCH] =?UTF-8?q?feat(cs):=20=E5=9C=A8=E7=83=AD=E9=97=A8=20FAQ?= =?UTF-8?q?=20=E7=BB=93=E6=9E=84=E4=B8=AD=E6=B7=BB=E5=8A=A0=E7=88=B6?= =?UTF-8?q?=E7=BA=A7=20ID=20=E5=92=8C=E6=A0=87=E9=A2=98=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/cs/faq.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/services/cs/faq.go b/services/cs/faq.go index 5a1eba4..3a76253 100644 --- a/services/cs/faq.go +++ b/services/cs/faq.go @@ -91,8 +91,10 @@ func CreateGetFaqDetailResponse() (response *GetFaqDetailResponse) { // 热门faq列表 type HotFaq struct { - Id int64 `json:"id"` - Title string `json:"title"` + Id int64 `json:"id"` + Title string `json:"title"` + ParentId int64 `json:"parent_id"` + ParentTitle string `json:"parent_title"` } type GetHotFaqRequest struct { *requests.JsonRequest