ORMTable ormTable = pojoClazz.getAnnotation(ORMTable.class);
if (ormTable == null) {
throw new IllegalAccessException("It not a ORMTable Class!");
}
String tableName = ormTable.tableName();
String[] orders = ormTable.order();
List<Object> params = new ArrayList<Object>();
this.sql = genSql(params, tableName, this.argsMap, orders);