Examples of FriendGroup


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
Copyright © 2018 www.massapi.com. 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.