1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
workflowfiltertable.php
См. документацию.
1<?php
2
3namespace Bitrix\Bizproc\Workflow\Entity;
4
5use Bitrix\Main\ORM\Data\DataManager;
6use Bitrix\Main\ORM\Fields\IntegerField;
7use Bitrix\Main\ORM\Fields\StringField;
8use Bitrix\Main\ORM\Fields\DatetimeField;
9
27{
28 public static function getTableName()
29 {
30 return 'b_bp_workflow_filter';
31 }
32
33 public static function getMap()
34 {
35 return [
36 (new StringField('WORKFLOW_ID'))
37 ->configureSize(32)
38 ->configurePrimary()
39 ,
40 (new StringField('MODULE_ID'))
41 ->configureSize(32)
42 ,
43 (new StringField('ENTITY'))
44 ->configureSize(64)
45 ,
46 (new StringField('DOCUMENT_ID'))
47 ->configureSize(128)
48 ,
49 (new IntegerField('TEMPLATE_ID'))
50 ->configureNullable(false)
51 ,
52 (new DatetimeField('STARTED'))
53 ->configureNullable(false)
54 ,
55 ];
56 }
57}