| Current Path : /home/rtorresani/www/app/code/Amasty/ImportCore/Model/FileUploadMap/ |
| Current File : //home/rtorresani/www/app/code/Amasty/ImportCore/Model/FileUploadMap/FileUploadMap.php |
<?php
declare(strict_types=1);
/**
* @author Amasty Team
* @copyright Copyright (c) Amasty (https://www.amasty.com)
* @package Import Core for Magento 2 (System)
*/
namespace Amasty\ImportCore\Model\FileUploadMap;
use Magento\Framework\Model\AbstractModel;
/**
* @method self setFilename(string $filename)
* @method string getFilename()
* @method self setHash(string $hash)
* @method string getCreatedAt()
* @method self setFileext(string $fileext)
* @method string getFileext()
*/
class FileUploadMap extends AbstractModel
{
public const ID = 'id';
public const FILENAME = 'filename';
public const FILEEXT = 'fileext';
public const HASH = 'hash';
public const CREATED_AT = 'created_at';
public function _construct()
{
parent::_construct();
$this->_init(ResourceModel\FileUploadMap::class);
$this->setIdFieldName(self::ID);
}
}