Пример #1
0
 //	@Test
 public void testQueryObjsList() {
   Assert.notNull(this.truleNewMapper);
   TRuleNewCond cond = new TRuleNewCond();
   cond.setSid(86L);
   cond.setStartRecords(0);
   cond.setEndRecords(10);
   try {
     List list = this.truleNewMapper.queryObjsList(cond);
     System.out.print(list.size());
     System.out.print(list.toString());
   } catch (SQLException e) {
     e.printStackTrace();
   }
 }