@Override public Integer delRoleBYId(Long id) { return roleDao.delRoleBYId(id); }
@Override public Integer bathSaveRole(Long[] rid, Long id) { return roleDao.bathSaveRole(rid, id); }
@Override public List<Role> findByAccountId(Long id) { return roleDao.findByAccountId(id); }
@Override public List<Role> listPage(Role role, Pagination pagination) { return roleDao.listPage(role, pagination); }
@Override public Role selectRoleById(Object id) throws Exception { return roleDao.selectRoleById(id); }
@Override public Integer updateRoleById(Role entity) throws Exception { return roleDao.updateRoleById(entity); }
@Override public Integer saveRole(Role entity) throws Exception { return roleDao.saveRole(entity); }