6
0

feat(cs): 在热门 FAQ 结构中添加父级 ID 和标题字段

This commit is contained in:
liguanjie 2025-09-10 15:32:31 +08:00
parent 90c2b1213a
commit ab3c9f33d0

View File

@ -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