Row.php 612 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Paypal\Model\ResourceModel\Report\Settlement;
  7. /**
  8. * Report settlement row resource model
  9. *
  10. * @author Magento Core Team <core@magentocommerce.com>
  11. */
  12. class Row extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
  13. {
  14. /**
  15. * Resource model initialization.
  16. * Set main entity table name and primary key field name.
  17. *
  18. * @return void
  19. */
  20. protected function _construct()
  21. {
  22. $this->_init('paypal_settlement_report_row', 'row_id');
  23. }
  24. }