List resultList = dao.excuteHqlPage(wherePart.toString(), startRow,
rowCount);
// 查询总记录数
if (startRow == 0 && resultList.size() > 0) {
totleCount = dao.excuteHql(wherePart.toString()).size();
}
Iterator it = resultList.iterator();
while (it.hasNext()) {Object[] obj = (Object[]) it.next();TMsgReceive receive = (TMsgReceive) obj[0];TMsgDetails details = (TMsgDetails) obj[1];TMsgInfo msgInfo = (TMsgInfo) obj[2];
。。。。。。。。。。。