diff --git a/internal/rpc/office/office.go b/internal/rpc/office/office.go index 91d12666f..3849f17d2 100644 --- a/internal/rpc/office/office.go +++ b/internal/rpc/office/office.go @@ -475,6 +475,7 @@ func (s *officeServer) GetUserWorkMomentsCommentsMsg(_ context.Context, req *pbO Comment: &comment, WorkMomentID: commentMsg.WorkMomentID, Content: commentMsg.WorkMomentContent, + UserID: req.UserID, }) } resp.Pagination = &pbCommon.ResponsePagination{CurrentPage: req.Pagination.PageNumber, ShowNumber: req.Pagination.ShowNumber} diff --git a/pkg/common/db/mongoModel.go b/pkg/common/db/mongoModel.go index 1dbec46a7..c0107dd65 100644 --- a/pkg/common/db/mongoModel.go +++ b/pkg/common/db/mongoModel.go @@ -669,7 +669,7 @@ func (d *DataBases) GetUserWorkMomentsCommentsMsg(userID string, showNumber, pag c := d.mongoClient.Database(config.Config.Mongo.DBDatabase).Collection(cCommentMsg) var commentMsgList []CommentMsg findOpts := options.Find().SetLimit(int64(showNumber)).SetSkip(int64(showNumber) * (int64(pageNumber) - 1)).SetSort(bson.M{"create_time": -1}) - result, err := c.Find(ctx, bson.M{"comment.user_id": userID}, findOpts) + result, err := c.Find(ctx, bson.M{"user_id": userID}, findOpts) if err != nil { return commentMsgList, err }