/
mikopbx
/
ModuleSpeechRecognize
Обзор
Документация
Войти
/
mikopbx
/
ModuleSpeechRecognize
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
Models/CdrText.php
90 строк
2 KB
boffart
init
02 окт 2025, 12:39
02 окт 2025, 12:39
107ee1d
Код
Авторство
О чём код?
<?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.phalcon.io/4.0/en/db-models * */ namespace Modules\ModuleSpeechRecognize\Models; use MikoPBX\Modules\Models\ModulesModelsBase; /** * Class ModuleCdrTextData * * @package Modules\ModuleCdrTextData\Models * @Indexes( * [name='UNIQUEID', columns=['UNIQUEID'], type=''], * [name='linkedId', columns=['linkedId'], type=''] * ) */ class CdrText extends ModulesModelsBase { /** * @Primary * @Identity * @Column(type="integer", nullable=false) */ public $id; /** * * @Column(type="string", nullable=true) */ public $UNIQUEID; /** * * @Column(type="string", nullable=true) */ public $linkedId; /** * * @Column(type="string", nullable=true) */ public $start; /** * * @Column(type="string", nullable=true) */ public $src_num; /** * * @Column(type="string", nullable=true) */ public $dst_num; /** * * @Column(type="string", nullable=true) */ public $answer; /** * * @Column(type="string", nullable=true) */ public $endtime; /** * * @Column(type="string", nullable=true) */ public $text; public function initialize(): void { $this->setSource('m_ModuleCdrText'); parent::initialize(); } }