mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
funcionando la vista papel generico. investiganto ruta del boton añadir. falta poder quitar botones primera col
This commit is contained in:
22
ci4/app/Entities/Configuracion/Imposicion.php
Normal file
22
ci4/app/Entities/Configuracion/Imposicion.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
namespace App\Entities\Configuracion;
|
||||
|
||||
use CodeIgniter\Entity;
|
||||
|
||||
class Imposicion extends \CodeIgniter\Entity\Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
"id" => null,
|
||||
"ancho" => null,
|
||||
"alto" => null,
|
||||
"unidades" => null,
|
||||
"orientacion" => null,
|
||||
"maquina" => null,
|
||||
"etiqueta" => null,
|
||||
];
|
||||
protected $casts = [
|
||||
"ancho" => "int",
|
||||
"alto" => "int",
|
||||
"unidades" => "?int",
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user