mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
trabajando en el formulario maquinas
This commit is contained in:
@ -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",
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user