Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
paysystemresthandlers.php
1<?php
3
21class PaySystemRestHandlersTable extends \Bitrix\Main\Entity\DataManager
22{
26 public static function getTableName()
27 {
28 return 'b_sale_pay_system_rest_handlers';
29 }
30
34 public static function getMap()
35 {
36 return array(
37 'ID' => array(
38 'data_type' => 'integer',
39 'primary' => true,
40 'autocomplete' => true,
41 ),
42 'NAME' => array(
43 'data_type' => 'string'
44 ),
45 'CODE' => array(
46 'data_type' => 'string'
47 ),
48 'SORT' => array(
49 'data_type' => 'integer'
50 ),
51 'SETTINGS' => array(
52 'data_type' => 'string',
53 'serialized' => true
54 ),
55 'APP_ID' => array(
56 'data_type' => 'string'
57 ),
58 );
59 }
60}