* @return
*/
@RequiresPermissions("Organization:assign")
@RequestMapping(value="/lookup2create/organizationRole/{organizationId}", method={RequestMethod.GET, RequestMethod.POST})
public String listUnassignRole(Map<String, Object> map, @PathVariable Long organizationId) {
Page page = new Page();
page.setNumPerPage(Integer.MAX_VALUE);
List<OrganizationRole> organizationRoles = organizationRoleService.findByOrganizationId(organizationId);
List<Role> roles = roleService.findAll(page);
List<Role> rentList = new ArrayList<Role>();