QueueTable::getMap

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. QueueTable
  4. getMap
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/webform/internals/queue.php
  • Класс: Bitrix\Crm\WebForm\Internals\QueueTable
  • Вызов: QueueTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		),
		'FORM_ID' => array(
			'data_type' => 'integer',
			'required' => true,
		),
		'USER_ID' => array(
			'data_type' => 'integer',
			'required' => true,
		),
		'WORK_TIME' => array(
			'data_type' => 'boolean',
			'required' => false,
			'default_value' => 'N',
			'values' => array('N','Y')
		),
	);
}

Добавить комментарий