%PDF- %PDF-
Direktori : /proc/self/root/home/bitrix/www/bitrix/modules/sale/lib/internals/ |
Current File : //proc/self/root/home/bitrix/www/bitrix/modules/sale/lib/internals/orderchange.php |
<?php namespace Bitrix\Sale\Internals; use Bitrix\Main; class OrderChangeTable extends Main\Entity\DataManager { public static function getTableName() { return 'b_sale_order_change'; } public static function getMap() { return array( 'ID' => array( 'data_type' => 'integer', 'primary' => true, 'autocomplete' => true ), 'ORDER_ID' => array( 'data_type' => 'integer', 'required' => true ), 'TYPE' => array( 'data_type' => 'string', 'required' => true ), 'DATA' => array( 'data_type' => 'string' ), 'DATE_CREATE' => array( 'data_type' => 'datetime', 'default_value' => new Main\Type\DateTime(), 'required' => true ), 'DATE_MODIFY' => array( 'data_type' => 'datetime', 'default_value' => new Main\Type\DateTime(), 'required' => true ), 'USER_ID' => array( 'data_type' => 'integer', ), 'ENTITY' => array( 'data_type' => 'string' ), 'ENTITY_ID' => array( 'data_type' => 'integer' ), ); } }