Esempio n. 1
0
 /** 分页查询: Conf */
 @Transactional(readOnly = true)
 public Page<Conf> findPage(ConfQuery query) {
   Assert.notNull(query, "'query' must be not null");
   return confDao.findPage(query);
 }