*/ class Report extends \Magento\Sales\Model\ResourceModel\EntityAbstract { /** * Resource initialization * * @return void */ protected function _construct() { } /** * Set main table and idField * * @param string $table * @param string $field * @return $this */ public function init($table, $field = 'id') { $this->_init($table, $field); return $this; } }