Search in sources :

Example 1 with Account

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());
}
Also used : Account(org.test.bean.Account) TestDao(org.test.dao.TestDao)

Aggregations

Account (org.test.bean.Account)1 TestDao (org.test.dao.TestDao)1