...
|
...
|
@@ -104,10 +104,7 @@ func (rs *RoleUserService) ListRole(in *command.UserRoleQueryCommand) (interface |
|
|
}()
|
|
|
ruRepository := factory.CreateRoleUserRepository(map[string]interface{}{"transactionContext": transactionContext})
|
|
|
|
|
|
in.PageNumber = 1
|
|
|
in.PageSize = 9999999
|
|
|
|
|
|
tempList, err := ruRepository.FindAllContainUser(1, 10, in.CompanyId, in.RoleId)
|
|
|
tempList, err := ruRepository.FindAllContainUser(in.PageNumber, in.PageSize, in.CompanyId, in.RoleId)
|
|
|
if err != nil {
|
|
|
return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
|
|
|
}
|
...
|
...
|
|