Examples of FriendBlack


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
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.