etiqueta impresora

This commit is contained in:
amazuecos
2025-04-02 08:16:58 +02:00
parent bb78f9cbd8
commit d42f46d280
8 changed files with 343 additions and 1 deletions

View File

@ -0,0 +1,27 @@
<?php
namespace App\Entities\Configuracion;
class ImpresoraEtiquetaEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"name" => null,
"tipo" => null,
"ip" => null,
"port" => null,
"user" => null,
"pass" => null,
"description" => null
];
protected $casts = [
"name" => "string",
"tipo" => "integer",
"ip" => "string",
"port" => "integer",
"user" => "string",
"pass" => "?string",
"description" => "?string"
];
}