| | |
| | | package com.lf.server.service.sys; |
| | | |
| | | import com.lf.server.entity.data.DirEntity; |
| | | import com.lf.server.entity.sys.MenusEntity; |
| | | import com.lf.server.mapper.sys.MenusMapper; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | return menusMapper.updateMenu(menusEntity); |
| | | } |
| | | |
| | | @Override |
| | | public Integer updateMenus(List<MenusEntity> menusEntity) { |
| | | return menusMapper.updateMenus(menusEntity); |
| | | } |
| | | |
| | | @Override |
| | | public MenusEntity selectMenu(int id) { |
| | |
| | | public List<MenusEntity> selectMenuAll() { |
| | | return menusMapper.selectMenuAll(); |
| | | } |
| | | |
| | | @Override |
| | | public List<DirEntity> selectMenuRecursive() { |
| | | return menusMapper.selectMenuRecursive(); |
| | | } |
| | | } |