123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- package com.ruoyi.project.system.role.controller;
- import java.util.List;
- import org.apache.shiro.authz.annotation.RequiresPermissions;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Controller;
- import org.springframework.transaction.annotation.Transactional;
- import org.springframework.ui.ModelMap;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.PathVariable;
- import org.springframework.web.bind.annotation.PostMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.ResponseBody;
- import com.ruoyi.common.utils.poi.ExcelUtil;
- import com.ruoyi.framework.aspectj.lang.annotation.Log;
- import com.ruoyi.framework.aspectj.lang.constant.BusinessType;
- import com.ruoyi.framework.web.controller.BaseController;
- import com.ruoyi.framework.web.domain.AjaxResult;
- import com.ruoyi.framework.web.page.TableDataInfo;
- import com.ruoyi.project.system.role.domain.Role;
- import com.ruoyi.project.system.role.service.IRoleService;
- /**
- * 角色信息
- *
- * @author ruoyi
- */
- @Controller
- @RequestMapping("/system/role")
- public class RoleController extends BaseController
- {
- private String prefix = "system/role";
- @Autowired
- private IRoleService roleService;
- @RequiresPermissions("system:role:view")
- @GetMapping()
- public String role()
- {
- return prefix + "/role";
- }
- @RequiresPermissions("system:role:list")
- @PostMapping("/list")
- @ResponseBody
- public TableDataInfo list(Role role)
- {
- startPage();
- List<Role> list = roleService.selectRoleList(role);
- return getDataTable(list);
- }
- @Log(title = "角色管理", action = BusinessType.EXPORT)
- @RequiresPermissions("system:role:export")
- @PostMapping("/export")
- @ResponseBody
- public AjaxResult export(Role role) throws Exception
- {
- try
- {
- List<Role> list = roleService.selectRoleList(role);
- ExcelUtil<Role> util = new ExcelUtil<Role>(Role.class);
- return util.exportExcel(list, "role");
- }
- catch (Exception e)
- {
- return error("导出Excel失败,请联系网站管理员!");
- }
- }
- /**
- * 新增角色
- */
- @GetMapping("/add")
- public String add()
- {
- return prefix + "/add";
- }
- /**
- * 新增保存角色
- */
- @RequiresPermissions("system:role:add")
- @Log(title = "角色管理", action = BusinessType.INSERT)
- @PostMapping("/add")
- @Transactional(rollbackFor = Exception.class)
- @ResponseBody
- public AjaxResult addSave(Role role)
- {
- return toAjax(roleService.insertRole(role));
- }
- /**
- * 修改角色
- */
- @GetMapping("/edit/{roleId}")
- public String edit(@PathVariable("roleId") Long roleId, ModelMap mmap)
- {
- mmap.put("role", roleService.selectRoleById(roleId));
- return prefix + "/edit";
- }
- /**
- * 修改保存角色
- */
- @RequiresPermissions("system:role:edit")
- @Log(title = "角色管理", action = BusinessType.UPDATE)
- @PostMapping("/edit")
- @Transactional(rollbackFor = Exception.class)
- @ResponseBody
- public AjaxResult editSave(Role role)
- {
- return toAjax(roleService.updateRole(role));
- }
- @RequiresPermissions("system:role:remove")
- @Log(title = "角色管理", action = BusinessType.DELETE)
- @PostMapping("/remove")
- @ResponseBody
- public AjaxResult remove(String ids)
- {
- try
- {
- return toAjax(roleService.deleteRoleByIds(ids));
- }
- catch (Exception e)
- {
- return error(e.getMessage());
- }
- }
- /**
- * 校验角色名称
- */
- @PostMapping("/checkRoleNameUnique")
- @ResponseBody
- public String checkRoleNameUnique(Role role)
- {
- String uniqueFlag = "0";
- if (role != null)
- {
- uniqueFlag = roleService.checkRoleNameUnique(role);
- }
- return uniqueFlag;
- }
-
- /**
- * 校验角色权限
- */
- @PostMapping("/checkRoleKeyUnique")
- @ResponseBody
- public String checkRoleKeyUnique(Role role)
- {
- String uniqueFlag = "0";
- if (role != null)
- {
- uniqueFlag = roleService.checkRoleKeyUnique(role);
- }
- return uniqueFlag;
- }
- /**
- * 选择菜单树
- */
- @GetMapping("/selectMenuTree")
- public String selectMenuTree()
- {
- return prefix + "/tree";
- }
- }
|