✏️ 正在编辑: AutomatizacaoDto.php
路径:
/srv/systems_dir/yuppiecred/application/Modules/Automatizacao/Dto/AutomatizacaoDto.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php namespace Modules\Automatizacao\Dto; use Modules\Core\Dto\DtoAbstract; class AutomatizacaoDto extends DtoAbstract { /** @var int */ protected $reprocessar_atendimentos; /** @var int|null */ protected $relatorio_diario; /** @var int|null */ protected $produtividade_supervisores; /** * @return bool */ public function isReprocessarAtendimentos(): bool { return (bool) $this->reprocessar_atendimentos; } /** * @return bool */ public function isRelatorioDiario(): bool { return (bool) $this->relatorio_diario; } /** * @return bool */ public function isProdutividadeSupervisores(): bool { return (bool) $this->produtividade_supervisores; } }
💾 保存文件
← 返回文件管理器