25 lines
411 B
PHP
25 lines
411 B
PHP
<?php
|
|
|
|
namespace Wowow\Devis\Model\ResourceModel;
|
|
|
|
use \Magento\Framework\Model\ResourceModel\Db\AbstractDb;
|
|
|
|
/**
|
|
* Department post mysql resource
|
|
*/
|
|
class Devis extends AbstractDb
|
|
{
|
|
|
|
/**
|
|
* Initialize resource model
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function _construct()
|
|
{
|
|
// Table Name and Primary Key column
|
|
$this->_init('wowow_devis', 'entity_id');
|
|
}
|
|
|
|
}
|