hsun 2 سال پیش
والد
کامیت
520f40c25d
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      models/tables/yb_community_question/model.go

+ 1 - 1
models/tables/yb_community_question/model.go

@@ -26,7 +26,7 @@ func GetPageListByCondition(where map[string]interface{}, pageIndex, pageSize in
 		return
 	}
 	offset := (pageIndex - 1) * pageSize
-	err = global.DEFAULT_MYSQL.Model(YbCommunityQuestion{}).Where(cond, vals...).Offset(offset).Limit(pageSize).Order("reply_time DESC").Scan(&list).Error
+	err = global.DEFAULT_MYSQL.Model(YbCommunityQuestion{}).Where(cond, vals...).Offset(offset).Limit(pageSize).Order("create_time DESC").Scan(&list).Error
 	return
 }