pull/213/head
wangchuxiao 3 years ago
parent dbc5bd96f3
commit 9976b8132f

@ -290,8 +290,8 @@ func GetUserWorkMomentsCommentsMsg(c *gin.Context) {
log.NewDebug(req.OperationID, utils.GetSelfFuncName(), "CopyStructFields failed", err.Error())
}
resp.Data.CurrentPage = respPb.Pagination.CurrentPage
resp.Data.ShowNumber = respPb.Pagination.ShowNumber
resp.Data.CommentsMsg = respPb.CommentsMsg
resp.Data.ShowNumber = respPb.Pagination.ShowNumber
resp.Data.CommentMsgs = respPb.CommentsMsgs
log.NewInfo(req.OperationID, utils.GetSelfFuncName(), "resp: ", resp)
c.JSON(http.StatusOK, resp)
}

@ -74,9 +74,9 @@ type GetUserWorkMomentsCommentsMsgReq struct {
type GetUserWorkMomentsCommentsMsgResp struct {
CommResp
Data struct {
CommentsMsg []*office.CommentsMsg `json:"comments"`
CurrentPage int32 `json:"currentPage"`
ShowNumber int32 `json:"showNumber"`
CommentMsgs []*office.CommentsMsg `json:"comments"`
CurrentPage int32 `json:"currentPage"`
ShowNumber int32 `json:"showNumber"`
} `json:"data"`
}

Loading…
Cancel
Save