ziwen 2 年之前
父節點
當前提交
94acbf8294
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      models/response/report.go

+ 4 - 0
models/response/report.go

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