refactor🎨 添加默认字段排序

This commit is contained in:
wenjianzhang
2021-05-14 19:32:53 +08:00
parent b82c3d9f99
commit 20e7f79f4f
2 changed files with 8 additions and 3 deletions
+2 -2
View File
@@ -23,7 +23,7 @@ func (e *SysApi) GetSysApiPage(c *dto.SysApiSearch, p *actions.DataPermission, l
var err error
var data models.SysApi
err = e.Orm.Model(&data).
err = e.Orm.Debug().Model(&data).
Scopes(
cDto.MakeCondition(c.GetNeedSearch()),
cDto.Paginate(c.GetPageSize(), c.GetPageIndex()),
@@ -103,4 +103,4 @@ func (e *SysApi) RemoveSysApi(d *dto.SysApiById, p *actions.DataPermission) erro
return errors.New("无权删除该数据")
}
return nil
}
}