|
@@ -26,7 +26,7 @@ func (s *roleService) Get(id int64) (*dao.Role, error) {
|
|
|
return role, nil
|
|
|
}
|
|
|
|
|
|
-func (s *roleService) List(roleName, tenantId, roleAlias string, current, size int) ([]dao.Role, error) {
|
|
|
+func (s *roleService) List(roleName, tenantId, roleAlias string, current, size int) ([]dao.Role, int, error) {
|
|
|
role := &dao.Role{}
|
|
|
offset := (current - 1) * size
|
|
|
limit := size
|
|
@@ -40,11 +40,11 @@ func (s *roleService) List(roleName, tenantId, roleAlias string, current, size i
|
|
|
role.RoleAlias = roleAlias
|
|
|
}
|
|
|
|
|
|
- roles, err := role.GetRoles(offset, limit)
|
|
|
+ roles, counts, err := role.GetRoles(offset, limit)
|
|
|
if err != nil {
|
|
|
- return nil, err
|
|
|
+ return nil, 0, err
|
|
|
}
|
|
|
- return roles, nil
|
|
|
+ return roles, counts, nil
|
|
|
}
|
|
|
|
|
|
func (s *roleService) Tree() (*model.RspRoleTree, error) {
|