正在显示
1 个修改的文件
包含
3 行增加
和
0 行删除
@@ -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 |
-
请 注册 或 登录 后发表评论