/
mikopbx
/
ModuleAmoCrm
Обзор
Документация
Войти
/
mikopbx
/
ModuleAmoCrm
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
Models/ModuleAmoPipeLines.php
67 строк
1 KB
apor
Настройки в разрезе id портала.
28 июл 2023, 13:57
28 июл 2023, 13:57
4f2cc6b
Код
Авторство
О чём код?
<?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 */ namespace Modules\ModuleAmoCrm\Models; use MikoPBX\Modules\Models\ModulesModelsBase; /** * Class ModuleAmoPipeLines * @package Modules\ModuleAmoCrm\Models */ class ModuleAmoPipeLines extends ModulesModelsBase { /** * @Primary * @Identity * @Column(type="integer", nullable=false) */ public $id; /** * @Column(type="string", nullable=true) */ public $amoId; /** * @Column(type="string", nullable=true) */ public $name; /** * Toggle * * @Column(type="string", nullable=true) */ public $did = ''; /** * Toggle * * @Column(type="string", nullable=true) */ public $statuses = ''; /** * @Column(type="integer", nullable=true) */ public $portalId = 0; /** * @param $calledModelObject * @return void */ public static function getDynamicRelations(&$calledModelObject): void { } public function initialize(): void { $this->setSource('m_ModuleAmoPipeLines'); parent::initialize(); } }