use of com.sohu.cache.entity.AppDesc in project cachecloud by sohutv.
the class AppDaoTest method testAppDao.
@Test
public void testAppDao() {
long appId = 998L;
AppDesc appDesc = appDao.getAppDescById(appId);
logger.info("{}", appDesc.toString());
}
use of com.sohu.cache.entity.AppDesc 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);
}
Aggregations