Examples of FeedTemplate


Examples of com.freewebsys.sns.pojo.FeedTemplate

   */
  @Override
  @Transactional
  public void deleteFeedTemplateById(Integer id) throws FeedTemplateException {
    try{
      FeedTemplate feedTemplate = (FeedTemplate) baseDao.findById(FeedTemplate.class, id);
      baseDao.delete(feedTemplate);
    } catch (Exception e) {
      throw new FeedTemplateException("FeedTemplate删除异常");
    }
  }
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.