Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
check2cashbox.php
1<?php
3
4use Bitrix\Main\Entity\DataManager;
5
23{
24 public static function getTableName()
25 {
26 return 'b_sale_check2cashbox';
27 }
28
29 public static function getMap()
30 {
31 return array(
32 'ID' => array('primary' => true,
33 'autocomplete' => true,
34 'autoincrement' => true,
35 'data_type' => 'integer',
36 ),
37 'CHECK_ID' => array(
38 'required' => true,
39 'data_type' => 'integer',
40 ),
41 'CASHBOX_ID' => array(
42 'required' => true,
43 'data_type' => 'integer',
44 ),
45 );
46 }
47}