function PagingObject(){
	this[Buffalo.BOCLASS] = "com.newsease.common.dao.PagingObject";
	this.curPage = 1;
	this.endnum = 0;
	this.maxResult = 0;
	this.needPaging = true;
	this.perPageRow = 15;
	this.startnum = 0;
	this.totalPage = 1;
	this.totalRow = 0;
}
function OrderObject() {
	this[Buffalo.BOCLASS] = "com.newsease.common.dao.OrderObject";
	this.orderColum = "";
	this.ascending = true;
	this.prefix = "";
	this.isOrder = true;
}
