mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
18 lines
405 B
PHP
Executable File
18 lines
405 B
PHP
Executable File
<?php
|
|
namespace App\Entities\Configuracion;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class MaquinasPapelesImpresionEntity extends \CodeIgniter\Entity\Entity
|
|
{
|
|
protected $attributes = [
|
|
"maquina_id" => null,
|
|
"papel_impresion_id" => null,
|
|
"active" => null,
|
|
];
|
|
protected $casts = [
|
|
"maquina_id" => "int",
|
|
"papel_impresion_id" => "int",
|
|
"active" => "int",
|
|
];
|
|
} |