Search in sources :

Example 1 with DnTable

use of org.test.bean.DnTable in project Axe by DongyuCai.

the class DaoTest method testDynamicTable.

/**
	 * 测试动态表
	 */
public static void testDynamicTable() {
    TestDao testDao = BeanHelper.getBean(TestDao.class);
    DnTable dnTable = new DnTable();
    dnTable.setId(1l);
    dnTable.setName("adf");
    testDao.deleteEntity(dnTable);
}
Also used : DnTable(org.test.bean.DnTable) TestDao(org.test.dao.TestDao)

Aggregations

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