Пример #1
0
 public void deleteMenuById(Integer menuId) throws Exception {
   if (menuId == null) {
     this.logger.warn("删除菜单失败:参数菜单id为空");
     throw new Exception("删除菜单失败:参数菜单id为空");
   }
   menuMapper.deleteMenuById(menuId);
 }