Package com.freewebsys.sns.pojo

Examples of com.freewebsys.sns.pojo.Mini


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

TOP

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

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.