Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
checkrelatedentities.php
1<?php
3
4use Bitrix\Main\Entity\DataManager;
5
24{
27
28 public static function getTableName()
29 {
30 return 'b_sale_check_related_entities';
31 }
32
33 public static function getMap()
34 {
35 return array(
36 'ID' => array(
37 'primary' => true,
38 'autocomplete' => true,
39 'autoincrement' => true,
40 'data_type' => 'integer',
41 ),
42 'CHECK_ID' => array(
43 'required' => true,
44 'data_type' => 'integer',
45 ),
46 'ENTITY_ID' => array(
47 'required' => true,
48 'data_type' => 'integer',
49 ),
50 'ENTITY_TYPE' => array(
51 'required' => true,
52 'data_type' => 'string',
53 ),
54 'ENTITY_CHECK_TYPE' => array(
55 'data_type' => 'string',
56 ),
57 );
58 }
59}