public function __construct()
 {
     parent::__construct();
     $this->_attr1 = 'id';
     $this->_table1 = 'hotel';
     $this->_attr2 = 'hotel_id';
     $this->_table2 = 'revenuedata';
     $this->_fields = array('hotel_name' => 'name');
 }
 public function __construct()
 {
     parent::__construct();
     $this->_attr1 = 'id';
     $this->_table1 = 'portfolio';
     $this->_attr2 = 'portfolio_id';
     $this->_table2 = 'hotel';
     $this->_fields = array('portfolio_id' => 'id', 'portfolio_name' => 'name');
 }
 public function __construct()
 {
     parent::__construct();
     $this->_attr1 = 'id';
     $this->_table1 = 'financialaccts';
     $this->_attr2 = 'acct_cat';
     $this->_table2 = 'revenuedata';
     $this->_fields = array('account' => 'acct_name');
 }
 public function __construct()
 {
     parent::__construct();
     $this->_attr1 = 'hotel_id';
     $this->_table1 = 'hoteltags';
     $this->_attr2 = 'id';
     $this->_table2 = 'hotel';
     $this->_fields = array('hotel_tags' => 'attr', 'hotel_tag_value' => 'value');
 }