Package com.freewebsys.sns.pojo

Examples of com.freewebsys.sns.pojo.FriendBlack


   */
  @Override
  @Transactional
  public void deleteFriendBlackById(Integer id) throws FriendBlackException {
    try{
      FriendBlack friendBlack = (FriendBlack) baseDao.findById(FriendBlack.class, id);
      baseDao.delete(friendBlack);
    } catch (Exception e) {
      throw new FriendBlackException("FriendBlack删除异常");
    }
  }
View Full Code Here

TOP

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

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.