1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
ExportedProductQueueTable.php
См. документацию.
1<?php
2
3namespace Bitrix\Catalog\v2\Integration\Seo\Entity;
4
5use Bitrix\Main\Entity;
6use Bitrix\Main\Localization\Loc;
7
8Loc::loadMessages(__FILE__);
9
26class ExportedProductQueueTable extends Entity\DataManager
27{
28 public static function getTableName()
29 {
30 return 'b_catalog_exported_product_queue';
31 }
32
33 public static function getMap()
34 {
35 return [
36 'QUEUE_ID' => [
37 'data_type' => 'integer',
38 'primary' => true,
39 ],
40 'PRODUCT_IDS' => [
41 'data_type' => 'string',
42 'required' => false,
43 ],
44 ];
45 }
46}