3132333435363738
throws FeedException { try { FeedUser feedUser = (FeedUser) baseDao.findById(FeedUser.class, id); baseDao.delete(feedUser); } catch (Exception e) { throw new FeedException("Feed删除异常"); } }
5354555657585960
// 通用查询匹配 conf = baseDao.findPage(start, limit, hql, userInfo.getId()); } return conf; } catch (Exception e) { throw new FeedException("查询Feed全部异常"); } }