/
mikopbx
/
ModuleQueueCallBack
Обзор
Документация
Войти
/
mikopbx
/
ModuleQueueCallBack
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
v1.7
Models/ModuleQueueCallBackOrder.php
81 строка
2 KB
Nikolay Beketov
Update for PHP 8.3 and Phalcon 5.8
01 окт 2024, 11:52
01 окт 2024, 11:52
3cc5ab7
Код
Авторство
О чём код?
<?php /** * Copyright © MIKO LLC - All Rights Reserved * Unauthorized copying of this file, via any medium is strictly prohibited * Proprietary and confidential * Written by Alexey Portnov, 2 2019 */ /* * https://docs.phalconphp.com/3.4/ru-ru/db-models-metadata * */ namespace Modules\ModuleQueueCallBack\Models; use MikoPBX\Modules\Models\ModulesModelsBase; /** * Class ModuleQueueCallBackOrder * @package Modules\ModuleQueueCallBack\Models * * * @Indexes( * [name='date_src_call', columns=['date_src_call'], type=''], * [name='count_calls', columns=['count_calls'], type=''], * [name='last_result', columns=['last_result'], type=''] * ) */ class ModuleQueueCallBackOrder extends ModulesModelsBase { /** * @Primary * @Identity * @Column(type="integer", nullable=false) */ public $id; /** * Text field example * * @Column(type="string", nullable=true) */ public $number; /** * Password field example * * @Column(type="string", nullable=true) */ public $link_src_call; /** * Password field example * * @Column(type="string", nullable=true) */ public $date_src_call; /** * Password field example * * @Column(type="string", nullable=true) */ public $last_result; /** * Integer field example * * @Column(type="integer", default="0", nullable=true) */ public $count_calls; public function initialize(): void { $this->setSource('m_ModuleQueueCallBackOrder'); parent::initialize(); } }