info = Article.objects.order_by('id').all() 等同于 order by
 
info = Article.objects.order_by('-id').all() 等同于 order by desc