use of org.test.bean.Account in project Axe by DongyuCai.
the class DaoTest method testDynamicSql.
public static void testDynamicSql(String loginName, String mobile, String email) {
TestDao testDao = BeanHelper.getBean(TestDao.class);
List<Account> accountList = testDao.getAccountList(getSql(loginName, mobile, email));
System.out.println(accountList.size());
}