Package com.freewebsys.sns.pojo

Examples of com.freewebsys.sns.pojo.FriendGroup


   */
  @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删除异常");
    }
  }
View Full Code Here

TOP

Related Classes of com.freewebsys.sns.pojo.FriendGroup

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.