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

@ -93,6 +93,8 @@ func CreateGetFaqDetailResponse() (response *GetFaqDetailResponse) {
type HotFaq struct { type HotFaq struct {
Id int64 `json:"id"` Id int64 `json:"id"`
Title string `json:"title"` Title string `json:"title"`
ParentId int64 `json:"parent_id"`
ParentTitle string `json:"parent_title"`
} }
type GetHotFaqRequest struct { type GetHotFaqRequest struct {
*requests.JsonRequest *requests.JsonRequest