Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
persontypesite.php
1<?php
3
6Loc::loadMessages(__FILE__);
7
33class PersonTypeSiteTable extends Main\Entity\DataManager
34{
40 public static function getTableName()
41 {
42 return 'b_sale_person_type_site';
43 }
44
50 public static function getMap()
51 {
52 return array(
53 'PERSON_TYPE_ID' => array(
54 'data_type' => 'integer',
55 'primary' => true,
56 ),
57 'SITE_ID' => array(
58 'data_type' => 'string',
59 'primary' => true
60 ),
61 );
62 }
63
64}
static loadMessages($file)
Definition loc.php:64