- Модуль: bizproc
- Путь к файлу: ~/bitrix/modules/bizproc/lib/script/entity/scriptqueuedocument.php
- Класс: BitrixBizprocScriptEntityScriptQueueDocumentTable
- Вызов: ScriptQueueDocumentTable::getMap
static function getMap()
{
return [
'ID' => [
'data_type' => 'integer',
'primary' => true,
],
'QUEUE_ID' => [
'data_type' => 'integer'
],
'DOCUMENT_ID' => [
'data_type' => 'string'
],
'WORKFLOW_ID' => [
'data_type' => 'string'
],
'STATUS' => [
'data_type' => 'integer'
],
'STATUS_MESSAGE' => [
'data_type' => 'string'
],
'QUEUE' => [
'data_type' => ScriptQueueTable::class,
'reference' => array(
'=this.QUEUE_ID' => 'ref.ID'
),
]
];
}