| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- package com.xintong.visualinspection.controller;
- import java.util.ArrayList;
- import java.util.List;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.PathVariable;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestMethod;
- import org.springframework.web.bind.annotation.RestController;
- import com.github.pagehelper.PageHelper;
- import com.github.pagehelper.PageInfo;
- import com.xintong.system.err.BusinessException;
- import com.xintong.visualinspection.bean.Role;
- import com.xintong.visualinspection.service.RoleService;
- /**
- * 文件名:TestController
- * 版本信息:日期:2017/3/30 Copyright 江苏省交通规划设计院 Corporation 2017 版权所有.
- */
- /**
- * @author wenhongquan
- *
- */
- @RestController
- @RequestMapping("/role")
- public class RoleController extends BaseController {
- @Autowired
- private RoleService roleService;
- /**
- * 添加角色
- *
- * @return String
- * @exception @since
- * 1.0.0
- */
- @RequestMapping(value = "/addRole", method = RequestMethod.POST, produces = "application/json;charset=UTF-8")
- public String addRole(@RequestBody Role role) throws Exception {
- roleService.insert(role);
- return returnResult(0, "添加成功", null);
- }
- /**
- * 修改角色
- *
- * @return String
- * @exception @since
- * 1.0.0
- */
- @RequestMapping(value = "/updateRole/{roleid}", method = RequestMethod.PUT, produces = "application/json;charset=UTF-8")
- public String updateRole(@RequestBody Role role, @PathVariable int roleid) {
- try {
- role.setId(roleid);
- roleService.update(role);
- return super.returnResult(0, "修改成功", null);
- } catch (Exception e) {
- throw new BusinessException(20003);
- }
- }
- /**
- * 删除角色(软删除)
- *
- * @return String
- * @exception @since
- * 1.0.0
- */
- @RequestMapping(value = "/deleteRole/{roleid}", method = RequestMethod.DELETE, produces = "application/json;charset=UTF-8")
- public String deleteRole(@PathVariable Integer roleid) {
- try {
- roleService.delete((roleid));
- return returnResult(0, "删除成功", null);
- } catch (Exception e) {
- throw new BusinessException(20002);
- }
- }
- /**
- * 获取所有角色
- *
- * @param page
- * @param size
- * @return
- */
- @RequestMapping(value = "/get/all/{page}/{size}", method = RequestMethod.GET, produces = "application/json;charset=UTF-8")
- public String getAllRole(@PathVariable Integer page, @PathVariable Integer size) {
- try {
- PageHelper.startPage(page, size);
- List<Role> roles = roleService.getRoles(new Role());
- return returnResult(0, "获取成功", new PageInfo(roles));
- } catch (Exception e) {
- throw new BusinessException(20001);
- }
- }
- @RequestMapping(value = "/roleBindPermission/{roleId}/{permissions}", method = RequestMethod.PUT, produces = "application/json;charset=UTF-8")
- public String roleBindPermission(@PathVariable Integer roleId, @PathVariable String permissions) {
- String[] permissionids = permissions.split(",");
- List<Integer> pids = new ArrayList<>();
- for (String id : permissionids) {
- if (!id.isEmpty()) {
- try {
- Integer idt = Integer.parseInt(id);
- pids.add(idt);
- } catch (Exception e) {
- throw new BusinessException(20001);
- }
- }
- }
- for (Integer id : pids) {
- roleService.roleBindPermission(roleId, id);
- }
- return returnResult(0, "绑定成功", null);
- }
- @RequestMapping(value = "/roleBindUser/{roleId}/{users}", method = RequestMethod.PUT, produces = "application/json;charset=UTF-8")
- public String roleBindUser(@PathVariable Integer roleId, @PathVariable String users) {
- String[] userids = users.split(",");
- List<Integer> uids = new ArrayList<>();
- for (String id : userids) {
- if (!id.isEmpty()) {
- try {
- Integer idt = Integer.parseInt(id);
- uids.add(idt);
- } catch (Exception e) {
- throw new BusinessException(20001);
- }
- }
- }
- for (Integer id : uids) {
- roleService.roleBindUser(roleId, id);
- }
- return returnResult(0, "绑定成功", null);
- }
- @RequestMapping(value = "/getRoleByDept/{deptId}", method = RequestMethod.GET, produces = "application/json;charset=UTF-8")
- public String getRoleByDept(@PathVariable Integer deptId) {
- List<Role> roles = roleService.getRoleByDept(deptId);
- return returnResult(0, "获取成功", roles);
- }
- @RequestMapping(value = "/getRoleByUser/{userId}", method = RequestMethod.GET, produces = "application/json;charset=UTF-8")
- public String getRoleByUser(@PathVariable Integer userId) {
- List<Role> roles = roleService.getRoleByUser(userId);
- return returnResult(0, "获取成功", roles);
- }
- @RequestMapping(value = "/getRoleByPosition/{positionId}", method = RequestMethod.GET, produces = "application/json;charset=UTF-8")
- public String getRoleByPosition(@PathVariable Integer positionId) {
- List<Role> roles = roleService.getRoleByPosition(positionId);
- return returnResult(0, "获取成功", roles);
- }
- }
|