| | |
| | | @Autowired |
| | | AuthMapper authMapper; |
| | | |
| | | |
| | | @Override |
| | | public Integer selectCount(String name) { |
| | | return authMapper.selectCount(name); |
| | |
| | | } |
| | | |
| | | @Override |
| | | public Integer selectCountForMenu(Integer menuid) { |
| | | return authMapper.selectCountForMenu(menuid); |
| | | } |
| | | |
| | | @Override |
| | | public List<AuthEntity> selectByPageForMenu(Integer menuid, Integer limit, Integer offset) { |
| | | return authMapper.selectByPageForMenu(menuid, limit, offset); |
| | | } |
| | | |
| | | @Override |
| | | public Integer insertAuth(AuthEntity authEntity) { |
| | | return authMapper.insertAuth(authEntity); |
| | | } |