use of com.sohu.cache.entity.AppSearch in project cachecloud by sohutv.
the class AppDaoTest method testGetAllAppDescList.
@Test
public void testGetAllAppDescList() {
AppSearch vo = new AppSearch();
vo.setAppName("vrspoll");
vo.setAppId(10011L);
List<AppDesc> list = appDao.getAllAppDescList(vo);
logger.info("list is {}", list);
}