*/
@Override
@Transactional
public void deleteFriendGroupById(Integer id) throws FriendGroupException {
try{
FriendGroup friendGroup = (FriendGroup) baseDao.findById(FriendGroup.class, id);
baseDao.delete(friendGroup);
} catch (Exception e) {
throw new FriendGroupException("FriendGroup删除异常");
}
}