mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
etiqueta impresora
This commit is contained in:
27
ci4/app/Entities/Configuracion/ImpresoraEtiquetaEntity.php
Normal file
27
ci4/app/Entities/Configuracion/ImpresoraEtiquetaEntity.php
Normal 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"
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user