作者 郑周

1. 用户按创建时间升序,

@@ -157,6 +157,9 @@ func (repo *UserRepository) Find(queryOptions map[string]interface{}) (int, []*d @@ -157,6 +157,9 @@ func (repo *UserRepository) Find(queryOptions map[string]interface{}) (int, []*d
157 } 157 }
158 //query.Limit(v.(int)) 158 //query.Limit(v.(int))
159 } 159 }
  160 + // 按创建时间升序
  161 + query.Order("created_at ASC")
  162 +
160 cnt, err := query.SelectAndCount() 163 cnt, err := query.SelectAndCount()
161 if err != nil { 164 if err != nil {
162 return 0, nil, err 165 return 0, nil, err