package com.xintong.visualinspection.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.access.prepost.PreAuthorize; 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.Menu; import com.xintong.visualinspection.service.MenuService; /** * 文件名:TestController * 版本信息:日期:2017/3/30 Copyright 江苏省交通规划设计院 Corporation 2017 版权所有. */ /** * @author wenhongquan * */ @RestController @RequestMapping("/menu") public class MenuController extends BaseController { @Autowired private MenuService menuService; /** * 添加菜单 * @return * String * @exception * @since 1.0.0 */ // @PreAuthorize("hasRole('ADMIN')") @RequestMapping(value = "/addMenu",method=RequestMethod.POST,produces="application/json;charset=UTF-8") public String addMenu(@RequestBody Menu menu) throws Exception{ menu.setStatus(0); menuService.insert(menu); return returnResult(0, "添加成功", null); } /** * 修改菜单 * @return * String * @exception * @since 1.0.0 */ @RequestMapping(value = "/updateMenu/{menuid}",produces="application/json;charset=UTF-8") public String updateMenu(@RequestBody Menu menu,@PathVariable int menuid){ try{ menu.setId(menuid); menuService.update(menu); return super.returnResult(0, "修改成功", null); }catch(Exception e){ throw new BusinessException(20003); } } /** * 删除菜单(软删除) * @return * String * @exception * @since 1.0.0 */ @RequestMapping(value = "/deleteMenu/{menuid}",produces="application/json;charset=UTF-8") public String deleteMenu(@PathVariable Integer menuid){ try{ menuService.delete((menuid)); return returnResult(0, "删除成功", null); }catch(Exception e){ throw new BusinessException(20002); } } /** * 获取所有菜单 * @param page * @param size * @return */ @RequestMapping(value = "/get/all",method=RequestMethod.GET,produces="application/json;charset=UTF-8") public String getAllMenu(){ try{ List