delete js.map

This commit is contained in:
RuoYi 2021-07-02 18:42:17 +08:00
parent 0bcfaafb96
commit 61d65783d6
9 changed files with 5 additions and 10 deletions

View File

@ -224,7 +224,7 @@ public class SysUserController extends BaseController
/**
* 用户授权角色
*/
@RequiresPermissions("system:user:add")
@RequiresPermissions("system:user:edit")
@Log(title = "用户管理", businessType = BusinessType.GRANT)
@PostMapping("/authRole/insertAuthRole")
@ResponseBody

View File

@ -3136,4 +3136,3 @@
}));
//# sourceMappingURL=bootstrap-select.js.map

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -7760,4 +7760,3 @@
});
}));
//# sourceMappingURL=summernote.js.map

File diff suppressed because one or more lines are too long

View File

@ -21,7 +21,7 @@ public interface ISysRoleService
public List<SysRole> selectRoleList(SysRole role);
/**
* 根据用户ID查询角色
* 根据用户ID查询角色列表
*
* @param userId 用户ID
* @return 权限列表
@ -29,7 +29,7 @@ public interface ISysRoleService
public Set<String> selectRoleKeys(Long userId);
/**
* 根据用户ID查询角色
* 根据用户ID查询角色权限
*
* @param userId 用户ID
* @return 角色列表

View File

@ -286,7 +286,8 @@ public class SysUserServiceImpl implements ISysUserService
/**
* 新增用户角色信息
*
* @param user 用户对象
* @param userId 用户ID
* @param roleIds 角色组
*/
public void insertUserRole(Long userId, Long[] roleIds)
{