| Current Path : /home/rtorresani/www/app/code/Amasty/ExportCore/Test/Integration/TestModule/Model/ |
| Current File : //home/rtorresani/www/app/code/Amasty/ExportCore/Test/Integration/TestModule/Model/TestEntity1.php |
<?php
declare(strict_types=1);
/**
* @author Amasty Team
* @copyright Copyright (c) Amasty (https://www.amasty.com)
* @package Export Core for Magento 2 (System)
*/
namespace Amasty\ExportCore\Test\Integration\TestModule\Model;
use Magento\Framework\Model\AbstractModel;
class TestEntity1 extends AbstractModel
{
public const ID = 'id';
public const TEXT_FIELD = 'text_field';
public const DATE_FIELD = 'date_field';
public const SELECT_FIELD = 'select_field';
public function _construct()
{
parent::_construct();
$this->_init(ResourceModel\TestEntity1::class);
$this->setIdFieldName(self::ID);
}
}