Преглед на файлове

fix:问答列表页,评论汇总

Roc преди 2 години
родител
ревизия
31eae2b20e
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      models/tables/yb_community_question_comment/query.go

+ 1 - 1
models/tables/yb_community_question_comment/query.go

@@ -98,7 +98,7 @@ type NumCommentByCommunityQuestion struct {
 func GetNumCommentByCommunityQuestionIds(communityQuestionIds []uint32) (item []*NumCommentByCommunityQuestion, err error) {
 	err = global.DEFAULT_MYSQL.Model(YbCommunityQuestionComment{}).
 		Select("community_question_id, count(1) total").
-		Where("community_question_id in (?) and type=1 and enabled = 1 ", communityQuestionIds).Scan(&item).Error
+		Where("community_question_id in (?) and type=1 and enabled = 1 ", communityQuestionIds).Group("community_question_id").Scan(&item).Error
 	return
 }