/
mikopbx
/
ModuleSpeechRecognize
Обзор
Документация
Войти
/
mikopbx
/
ModuleSpeechRecognize
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
Models/ManualTasks.php
61 строка
1 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 ManualTasks * * @package Modules\ModuleCdrTextData\Models * @Indexes( * [name='closeTime', columns=['closeTime'], type=''], * [name='changeTime', columns=['changeTime'], type=''], * [name='linkedId', columns=['linkedId'], type=''] * ) */ class ManualTasks extends ModulesModelsBase { /** * @Primary * @Identity * @Column(type="integer", nullable=false) */ public $id; /** * * @Column(type="string", nullable=true) */ public $linkedId; /** * * @Column(type="integer", nullable=true, default="0") */ public $changeTime = '0'; /** * * @Column(type="integer", nullable=true, default="0") */ public $closeTime = '0'; public function initialize(): void { $this->setSource('m_ManualTasks'); parent::initialize(); } }