List list = buildModel(rs, modelClass, pageSize);
if (rs != null) rs.close();
if (pst != null) pst.close();
return new Page(list, pageNumber, pageSize, totalPage, (int)totalRow);
} catch (Exception e) {
throw new ActiveRecordException(e);
} finally {
DbKit.close(conn);
}
}