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()) log.NewDebug(req.OperationID, utils.GetSelfFuncName(), "CopyStructFields failed", err.Error())
} }
resp.Data.CurrentPage = respPb.Pagination.CurrentPage resp.Data.CurrentPage = respPb.Pagination.CurrentPage
resp.Data.ShowNumber = respPb.Pagination.ShowNumber resp.Data.ShowNumber = respPb.Pagination.ShowNumber
resp.Data.CommentsMsg = respPb.CommentsMsg resp.Data.CommentMsgs = respPb.CommentsMsgs
log.NewInfo(req.OperationID, utils.GetSelfFuncName(), "resp: ", resp) log.NewInfo(req.OperationID, utils.GetSelfFuncName(), "resp: ", resp)
c.JSON(http.StatusOK, resp) c.JSON(http.StatusOK, resp)
} }

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

Loading…
Cancel
Save