trabajando en el formulario maquinas

This commit is contained in:
Jaime Jimenez
2023-06-27 12:24:02 +02:00
parent ae024c5d27
commit a9ea464b05
26 changed files with 2815 additions and 42 deletions

View File

@ -0,0 +1,18 @@
<?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",
];
}