|
@@ -9,6 +9,8 @@ type ReportDetail struct {
|
|
|
ReportChapterList []*ReportChapterListItem `json:"report_chapter_list"`
|
|
|
PermissionCheck *PermissionCheckInfo `json:"permission_check"`
|
|
|
AuthOk bool `json:"auth_ok"`
|
|
|
+ LikeNum int64 `description:"点赞总数" json:"like_num"`
|
|
|
+ LikeEnabled int8 `description:"是否已点赞: 0-未点赞 1-已点赞" json:"like_enabled"`
|
|
|
}
|
|
|
|
|
|
type ReportChapterListItem struct {
|
|
@@ -73,6 +75,8 @@ type ReportChapterDetail struct {
|
|
|
PermissionCheck *PermissionCheckInfo `json:"permission_check"`
|
|
|
ReportChapterMenuList []*ReportChapterMenu `json:"report_chapter_menu_list"`
|
|
|
AuthOk bool `json:"auth_ok"`
|
|
|
+ LikeNum int64 `description:"点赞总数" json:"like_num"`
|
|
|
+ LikeEnabled int8 `description:"是否已点赞: 0-未点赞 1-已点赞" json:"like_enabled"`
|
|
|
}
|
|
|
|
|
|
type ReportChapterMenu struct {
|